-
Notifications
You must be signed in to change notification settings - Fork 0
/
rascunho.html
109 lines (79 loc) · 1.99 KB
/
rascunho.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* Reset de estilos para garantir uma base consistente */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Estilos básicos para o corpo do documento */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #051516;
color: #120d0d;
margin: 0;
padding: 0;
}
/* Estilo para o cabeçalho do site */
header {
display:flex;
background-color: #ffffff;
color: #fff;
width: 100%;
height: 80px;
margin-top: 0px;
}
.logo ul img{
display: flex;
margin-right: 300px;
margin-left: 200px;
margin-top: 200px
}
.menu ul{
display: flex;
list-style-type: none;
margin-top: -40px;
margin-left: 800px;
}
.menu ul li a:hover{
background-color: #6f2fc4; /* Cor de fundo ao passar o mouse */
border-radius: 5px; /* Borda arredondada */
}
.menu ul li a{
text-decoration: none;
}
.menu ul li {
display:inline;
margin-left: 35px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 17px;
font-weight: 200 ;
color: #6f2fc4;
margin-bottom: 50px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Você Viagens</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<header>
<div class="container">
<nav class="logo">
<img src= "./assets/WhatsApp Image 2024-06-30 at 23.57.18-6 2.jpeg"> </img>
</nav>
<nav class="menu">
<ul>
<li><a href="#">Vamos Viajar</a> </li>
<li><a href="#">Sobre mim</a> </li>
<li><a href="#">Depoimentos</a> </li>
<li><a href="#">Contatos</a> </li>
</ul>
</nav>
</div>
</header>
!-- fim secao header --
</body>
</html>