-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (49 loc) · 1.57 KB
/
index.html
File metadata and controls
64 lines (49 loc) · 1.57 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Versionamento</title>
</head>
<body>
<header>
<h1> Halloween do VnW</h1>
<nav>
<a href="">Home</a>
<a href="">Sobre</a>
<a href="">Contato</a>
</nav>
</header>
<main>
<section>
<!--Card-->
<div>
<figure>
<img src="https://img.freepik.com/fotos-gratis/fundo-de-halloween-com-velas-assustadoras-de-aboboras-no-cemiterio-a-noite-com-fundo-de-castelo_123827-25820.jpg" alt="Aboboras">
<figcaption> Aboboras </figcaption>
</figure>
</div>
<div>
<figure>
<img src="https://img.freepik.com/fotos-premium/dia-de-halloween-olhos-de-jack-o-lanterns-doces-ou-travessuras-samhain-vespera-de-todos-os-santos-vespera-de-todos-os-santos-todo-o-dia-das-bruxas-assustador-horror-fantasma-demonio-fundo-31-de-outubro_10221-21477.jpg" alt="Fantasma">
<figcaption> Fantasma </figcaption>
</figure>
</div>
<div>
<figure>
<img src="https://wallpaperset.com/w/full/8/0/f/23127.jpg" alt="Lobisomens">
<figcaption> Lobisomens </figcaption>
</figure>
</div>
</section>
</main>
<footer>
<ul>
<li> Fantasias </li>
<li> Aboboras </li>
<li> Doces </li>
</ul>
</footer>
</body>
</html>