-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<div class="logo">
<span class="block">Marketing</span>
<span>Criativo</span>
</div>
<nav class="top-menu">
<ul>
<li><a href="#" class="color">Início</a></li>
<li><a href="#" class="color">Serviços</a></li>
<li><a href="#" class="color">Sobre</a></li>
<li><a href="#" class="color">Contato</a></li>
</ul>
<a href="#" class="color btn">Já tem uma conta?</a>
</nav>
</header>
<main>
<div class="details">
<h1><span class="modifier">Inscreva-se agora</span> na Newsletter</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ad similique expedita illum distinctio molestias dignissimos dolorum nesciunt, eos beatae eaque! Quas at error, ut incidunt officiis provident ratione reiciendis excepturi.</p>
<form action="#">
<input type="text" placeholder="Nome">
<input type="email" name="email" id="email" placeholder="E-mail">
<input type="submit" value="Enviar >">
</form>
</div>
<div class="hero-section">
<img src="assets/img/hero.svg" alt="">
</div>
</main>
<script src="./assets/js/script.js"></script>
</body>
<!-- <a href="https://storyset.com/technology">Technology illustrations by Storyset</a> -->
</html>