-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (65 loc) · 2.08 KB
/
index.html
File metadata and controls
75 lines (65 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<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 rel="stylesheet" href="./style.css">
<title>WeatherApp</title>
</head>
<body>
<div class="location">
<h1 class="location-timezone">No timezone</h1>
<canvas id="icon1" width="128" height="128"></canvas>
</div>
<div class="temperature">
<div class="degree-section">
<h2 class="temperature-degree">00</h2>
<span>F</span>
</div>
<div class="temperature-description">
Its cold
</div>
</div>
<h2 class="five-day-tag">Five day forecast</h2>
<ul class="five-day">
<li class="one-day">
<canvas id="icon2" width="30" height="30"></canvas>
<div class="day-one">
<h2 class="forecast-temp">00</h2>
<span>tomorrow</span>
</div>
</li>
<li class="one-day">
<canvas id="icon3" width="30" height="30"></canvas>
<div class="day-two">
<h2 class="forecast-temp">00</h2>
<span>tomorrow</span>
</div>
</li>
<li class="one-day">
<canvas id="icon4" width="30" height="30"></canvas>
<div class="day-three">
<h2 class="forecast-temp">00</h2>
<span>tomorrow</span>
</div>
</li>
<li class="one-day">
<canvas id="icon5" width="30" height="30"></canvas>
<div class="day-four">
<h2 class="forecast-temp">00</h2>
<span>tomorrow</span>
</div>
</li>
<li class="one-day">
<canvas id="icon6" width="30" height="30"></canvas>
<div class="day-five">
<h2 class="forecast-temp">00</h2>
<span>tomorrow</span>
</div>
</li>
</ul>
<script src="skycons.js"></script>
<script src="app.js"></script>
</body>
</html