-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.66 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,700" rel="stylesheet">
<link rel="stylesheet" href="build/css/weather-icons.min.css">
<link rel="stylesheet" href="build/bundle/bundle.css">
<title>Weather App</title>
</head>
<body>
<div class="temp">
<section class="section-tempetature">
<header>
<p>
<span class="icon wi wi-night-sleet"></span classs>
<span class="temperature">20 °C</span>
</p>
</header>
<p class="location">City Country</p>
</section>
<section class="record-temperature">
<div><i class="wi wi-day-sunny"></i><p>8am</p></div>
<div><i class="wi wi-day-fog"></i><p>12pm</p></div>
<div><i class="wi wi-day-sleet"></i><p>4pm</p></div>
<div><i class="wi wi-night-alt-showers"></i><p>7pm</p></div>
</section>
</div>
<section class="container">
<canvas id="graph"></canvas>
</section>
<section class="days">
<span>L</span>
<span>M</span>
<span>M</span>
<span>J</span>
</section>
<section class="axes">
<p><span id="temperature"></span>Temperatura <span id="humity"></span>Humedad </p>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>
<script src="build/bundle/bundle.js"></script>
</body>
</html>