forked from IT-varsity-Materials/AppAcademyWeek3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather.html
More file actions
91 lines (73 loc) · 2.71 KB
/
weather.html
File metadata and controls
91 lines (73 loc) · 2.71 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<title>Weather</title>
</head>
<body>
<div id="header">
<img src="images/logo.png" />
</div>
<div id="tabs-top">
<a href="animals.html">ANIMALS</a>
<a href="map.html">MAP</a>
<a href="places.html">PLACES</a>
</div>
<div id="main">
<div id="content">
<div id="info-box-full">
<h3>PINE CITY WEATHER</h3>
<p> <img class="info-box-weather-icon" src="images/partly-cloudy.png" />Partly Cloudy</p>
<p>↑25° ↓16°</p>
<h1 class="info-box-weather-icon">22°</h1>
<p><strong>FORECAST</strong></p>
<table>
<tr>
<td>TUESDAY</td>
<td> <img class="info-box-weather-icon" src="images/sunny.png" /></td>
<td>↑28</td>
<td>↓17</td>
</tr>
<tr>
<td>WEDNESDAY</td>
<td> <img class="info-box-weather-icon" src="images/rain.png" /></td>
<td>↑22</td>
<td>↓13</td>
</tr>
<tr>
<td>THUSRDAYS</td>
<td> <img class="info-box-weather-icon" src="images/partly-cloudy.png" /></td>
<td>↑26</td>
<td>↓16</td>
</tr>
<tr>
<td>FRIDAY</td>
<td> <img class="info-box-weather-icon" src="images/rain.png" /></td>
<td>↑31</td>
<td>↓17</td>
</tr>
<tr>
<td>SATURDAY</td>
<td> <img class="info-box-weather-icon" src="images/partly-cloudy.png" /></td>
<td>↑22</td>
<td>↓14</td>
</tr>
<tr>
<td>SUNDAY</td>
<td> <img class="info-box-weather-icon" src="images/sunny.png" /></td>
<td>↑28</td>
<td>↓17</td>
</tr>
</table>
</div>
</div>
</div>
<div id="tabs-top">
<a href="animals.html">ANIMALS</a>
<a href="map.html">MAP</a>
<a href="places.html">PLACES</a>
</div>
</body>
</html>