-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
52 lines (48 loc) · 1.65 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
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="pt-br">
<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">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<link rel="stylesheet" href="./style.css">
<title>API Clima</title>
</head>
<body>
<main>
<h2>Consulte o clima na sua cidade</h2><br>
<div class="entry">
<label for="cityName">Digite a cidade desejada:</label><br><br>
<input type="text" id="cityName" name="city" placeholder="Digite a cidade" class="digitCity">
<input type="submit" value="Enviar" id="submit"><br><br>
</div>
<div class="weatherSearch">
<h2 class="city"></h2>
<img src="" class="icon" id="imagem">
<h1 class="temp"></h1>
<p class="precProb"></p>
<p class="wind"></p>
<p class="obsNote">Talvez seja necessário o preenchimento do estado, por extenso, para a localização correta</p>
</div>
</main>
<!-- RODAPÉ -->
<footer class="rodape">
<a href="https://github.com/lelaranja"><img src="./img/git.png" alt="logo git" class="gitHub" /></a>
<div class="txtFooter">
<b>
<p>Projeto para fins educacionais</p>
</b>
<b>
<p>Todos os direitos reservados</p>
</b>
<b>
<p>Letícia Jardim Laranja</p>
</b>
</div>
<a href="https://www.linkedin.com/in/leticialaranja/"><img src="./img/linkedin.png" alt="logo linkedin"
class="linkeDin" /></a>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="./script.js"></script>
</body>
</html>