-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (61 loc) · 1.96 KB
/
index.html
File metadata and controls
75 lines (61 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu do Vaxxco</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
</style>
<style>
img{
float:inline-end;
}
h1{
color: white;
text-align: center;
}
body{
background-image: url("https://img.freepik.com/vetores-gratis/fundo-de-linhas-dinamicas-de-estilo-de-papel_23-2149008629.jpg?semt=ais_hybrid&w=740");
background-size: cover;
}
li a{
color: #ffffff;
text-decoration: none;
padding: 5px 30px;
display: block;
}
ul{
list-style-type: none;
text-decoration: dashed;
display: flex;
box-sizing: border-box;
padding: 1vw 28vw 0;
margin: 40vh 1;
}
a{
text-decoration: none;
}
li a:hover{
background: #757775;
}
li ul li{
border: 1px solid #c0c0c0;
display: block;
width: 200px;
}
</style>
</head>
<body>
<h1>Bolsonabo, Lula e Eneas</h1>
<ul>
<li><a href="menusimples.html">Menu Simples</a></li>
<li><a href="menufixado.html">Menu Fixado no topo da tela</a></li>
<li><a href="submenu.html">Menu e Submenu</a></li>
<li><a href="menuresponsivo.html">Menu Responsivo</a></li>
</ul>
</body>
</html>