-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.57 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
<!DOCTYPE html>
<html lang="pt">
<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">
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="./style/media.css">
<title>Marketing Criativo</title>
</head>
<body>
<header>
<div id="title">
<h1>Marketing</h1>
<h1>Criativo</h1>
</div>
<nav>
<ul class="nav-list">
<a href="./index.html"><li>Inicio</li></a>
<a href="./servicos.html"><li>Serviços</li></a>
<a href="./sobre.html"><li>Sobre</li></a>
<a id="inscreva-se" href="#"><li>Entre em contato</li></a>
</ul>
</nav>
</header>
<main>
<aside>
<h2><span>Inscreva-se agora</span></h2>
<h2>na newsletter</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<form>
<input type="text" placeholder="Nome">
<input type="email" placeholder="E-mail">
<input type="submit" value="Enviar >">
</form>
</aside>
<article>
<img src="./img/pr_pedroricardo.jpg" alt="logo">
</article>
</main>
</body>
</html>