-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.95 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
<!DOCTYPE html>
<html lang="es">
<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">
<link rel="preload" href="css/normalize.css">
<link rel="preload" href="css/styles.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<title>WeatherNow - Home</title>
</head>
<body>
<div id="contenedor">
<div id="caja1" class="hvr-grow">
<h1 id="temperatura__valor"></h1>
<h1 id="temperatura__descripcion"></h1>
</div>
<div id="caja2" class="hvr-grow">
<h1 id="ubicacion__ciudad"></h1>
<img id="ubicacion__iconoAnim" src="" alt="" height="140" width="140">
</div>
<div id="caja3" class="hvr-grow">
<h3>Veloc. del Viento</h3>
<h1 id="velocidad"></h1>
<img src="img/static/windy.svg" alt="" height="90" width="90">
</div>
<div id="caja4" class="hvr-grow">
<h3>Tempertatura máxima</h3>
<h1 id="maxTemp"></h1>
<img src="img/static/highTemperature.svg" alt="" height="90" width="90">
</div>
<div id="caja5" class="hvr-grow">
<h3>Humedad</h3>
<h1 id="sensacion"></h1>
<img src="img/static/humidity.svg" alt="" height="90" width="90">
</div>
<div id="caja6" class="hvr-grow">
<h3>Temperatura mínima</h3>
<h1 id="minTemp"></h1>
<img src="img/static/lowTemperature.svg" alt="" height="90" width="90">
</div>
</div> <!--Fin .contenedor-->
<script src="/js/index.js"></script>
</body>
</html>