-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
78 lines (74 loc) · 3.24 KB
/
header.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
<!DOCTYPE html>
<html lang="en">
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.ico">
<title>WeatherWave</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/fontawesome.min.css" rel="stylesheet" type="text/css" />
<link href="css/owl.carousel.min.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a href="projetoDweb.html"><img src="assets/Wwlogo.png" alt="" class="navbar-brand" style="width: 3.8vw; height: auto;"/></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="projetoDweb.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Notícias
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="maislidas.html">Mais lidas</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="ciencianews.html">Ciência e desenvolvimento</a></li>
<li><a class="dropdown-item" href="shnews.html">Esporte e saúde</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="privacy-policy.html">Política de Privacidade</a>
</li>
</ul>
<div id="sun-info-container" class="sun-info" style=" margin-bottom: 10px; display: flex; font-size: 15px; font-weight: 500;">
<p>Leopoldina, 26 °</p>
<img src="./assets/headersun.png" alt="Imagem do Sol" style="width: 45px; height: 50px; margin-left: 15px; margin-right: 10px; margin-top: -2px;">
</div>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Digite aqui..." aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
</header>
</body>
</html>
<style>
.sun-info {
margin-top: 18px;
display: flex;
align-items: center;
color: #000;
font-size: 15px;
margin-right: 20px;
font-weight: 500;
}
.sun-info img {
margin-bottom: 20px;
width: 35px;
margin-left: 10px;
}
</style>