-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (34 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto&display=swap" rel="stylesheet">
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="css/style.css">
<title>Weather Channel P5</title>
</head>
<body>
<div class="encabezado">
<h1>Weather Channel</h1>
<input type="text" placeholder="Ingresá una ciudad">
<button>ENVIAR</button>
</div>
<div class="container">
<ul class="ciudades">
<li>
<span id="ciudad"></span><br>
<span id="temperatura"></span><span id="grados"></span><br>
<img id="wicon" src="" alt="Ícono del tiempo"><br>
<span id="descripcion"></span><br>
</li>
</ul>
</div>
<!-- JQUERY -->
<script src="js/libreria/jquery-3.5.1.min.js"></script>
<!-- CUSTOM JS -->
<script src="js/script.js"></script>
</body>
</html>