-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
80 lines (69 loc) · 2.46 KB
/
weather.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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<img src="Pinecityzoo/Images/logo.png"/>
</div>
<div id="tabs-top">
<a href="animals.html">ANIMALS</a>
<a href="index.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="Pinecityzoo/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="Pinecityzoo/Images/sunny.png"></td>
<td>↑28</td>
<td>↓17</td>
</tr>
<tr>
<td>Wednesday</td>
<td><img class="info-box-weather-icon" src="Pinecityzoo/Images/partly-cloudy.png"></td>
<td>↑28</td>
<td>↓15</td>
</tr>
<tr>
<td>Thursday</td>
<td><img class="info-box-weather-icon" src="Pinecityzoo/Images/rain.png"></td>
<td>↑28</td>
<td>↓17</td>
</tr>
<tr>
<td>Friday</td>
<td><img class="info-box-weather-icon" src="Pinecityzoo/Images/sunny.png"></td>
<td>↑29</td>
<td>↓15</td>
</tr>
<tr>
<td>Sartaday</td>
<td><img class="info-box-weather-icon" src="Pinecityzoo/Images/sunny.png"></td>
<td>↑30</td>
<td>↓17</td>
</tr>
<tr>
<td>Sunday</td>
<td><img class="info-box-weather-icon" src="Pinecityzoo/Images/sunny.png"></td>
<td>↑28</td>
<td>↓16</td>
</tr>
</table>
</div>
</div>
<div id="tabs-bottom">
<a href="#">WEATHER</a>
<a href="feedback.html">FEEDBACK</a>
</div>
</body>
</html>