-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavoritos.html
31 lines (28 loc) · 1.05 KB
/
favoritos.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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="stylesheet" href="style/favoritos.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Raleway:900" rel="stylesheet">
<title>Weather Now - Favoritos</title>
</head>
<body>
<nav class="menu-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="favoritos.html">Favoritos</a></li>
<li><a href="meu-local.html">Minha Localização</a></li>
<li><a href="5proximos.html">5 Próximos Dias</a></li>
<li><a href="resultados.html">5 Próximos Dias</a></li>
</ul>
</nav>
<div class="container">
<h1>Cidades Favoritas</h1>
<div id="favorites-list"></div>
</div>
<script src="javascript/favoritos.js"></script>
</body>
</html>