-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.19 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
51
52
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projeto com JavaScript</title>
<script src="script.js" defer></script>
<style>
/* Estilos */
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
font-family: Arial, sans-serif;
}
.imagem img {
max-width: 100%;
height: auto;
}
.produto {
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<main>
<header>
<h1 id="titulo"></h1>
<section>
<h2>Sobre nós</h2>
<p>
Loja.com Vestimentas é um site que ajuda você na escolha de sua
compra, com as peças mais bonitas para seu dia à dia e dias de
lazer.
</p>
</section>
</header>
</main>
</div>
<footer>
<ul>
<li>Facebook</li>
<li>Instagram</li>
<li>Linkedin</li>
</ul>
</footer>
</body>
</html>