-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (83 loc) · 3.27 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Puranga Ara</title>
<link
rel="shortcut icon"
type="image/x-icon"
href="./src/img/nuvemsol_png.png"
id="icone"
/>
<!-- Google Fonts-->
<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=Oxanium:wght@300;400;700&family=Raleway:wght@300;500&family=Ubuntu+Mono&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- CSS -->
<link rel="stylesheet" href="./src/css/reset.css"/>
<link rel="stylesheet" href="./src/css/style.css"/>
<link rel="stylesheet" href="./src/css/responsive.css"/>
<!-- JS -->
<script src="./src/js/script.js" defer></script>
</head>
<body onload="mudarBackground()">
<div class="container" style="text-align: center; width: 20%; height: 40%;">
<img class="logo" src="./src/img/nuvemsol_png.png" >
<h2 class="data-time"><p class="pt">Bom Dia</p> <p class="nh">Puranga Ara</p></h2>
<div class="copy">
© 2023 Copyright: <br> Saulo Ferro Maciel
</div>
</div>
<div class="container" >
<div class="form">
<h3 class="legend-input">Confira as mudanças meterológicas de uma região:</h3>
<div class="form-input-container">
<input
type="text"
id="city-input"
placeholder="Digite o nome da cidade!"
/>
<button id="btn-search" >
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
</div>
<div id="weather-data">
<h2 class="title-city">
<i id="icon2" class="fa-solid fa-location-dot"></i>
<span id="city" style="margin-left: 5.5px; margin-right: 5.5px;"> Nome da Cidade</span>
<img style="width: 9%" src="" id="county">
</h2>
<p id="temperature">
<span>Estimativa de temperatura em </span>°C
</p>
<div id="description-container">
<p style="margin-top: 1.5px;" id="description"> Descrição Meterológica</p>
<img src="https://openweathermap.org/img/wn/02n.png" alt="Condições do tempo" id="weather-icon">
</div>
<div id="details-container">
<p id="umidity">
<i class="fa-solid fa-droplet"></i>
<span>Estimativa de umidade </span>
</p>
<p id="wind">
<i class="fa-solid fa-wind"></i>
<span> Estimativa da velocidade do vento</span>
</p>
</div>
</div>
</div>
</body>
</html>