-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (39 loc) · 1.61 KB
/
index.html
File metadata and controls
46 lines (39 loc) · 1.61 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
<!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="./src/css/reset.css">
<link rel="stylesheet" href="./src/css/style.css">
<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=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet">
<title>Previsao do Tempo</title>
</head>
<body>
<main class="container">
<div class="search-city">
<input type="text" id="search-input" placeholder="Digite uma cidade">
<button class="search-button"><img src="./src/imagens/lupa.png" class="lupa-image" alt="lupa"></button>
</div>
<div class="details">
<h1 id="city">Use a lupa para procurar o clima de uma cidade.</h1>
<p class="temperature" id="temperature"></p>
<img id="climate-icon" src="https://cdn.weatherapi.com/weather/64x64/day/116.png" alt="icon climate">
<p class="climate-condition" id="climate-condition"></p>
</div>
<div class="more-details">
<div class="humidity">
<span>Umidade</span>
<span id="humidity">--</span>
</div>
<div class="wind-speed">
<span>Velocidade do Vento</span>
<span id="wind-speed">--</span>
</div>
</div>
</main>
<script src="./src/js/index.js"></script>
</body>
</html>