-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·71 lines (67 loc) · 1.38 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
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
<html>
<head>
<title>iOS 7 Weather</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<article class="weather thunderstorm">
<header class="now">
<h1>Chicago</h1>
<h3>Storms</h3>
<h2>74°</h2>
</header>
<section class="today">
<header class="group">
<h3>Today</h3>
84 / 72
</header>
<div class="hours group">
<div class="hour current rain">
<h4>Now</h4>
74
</div>
<div class="hour cloudy">
<h4>9am</h4>
76
</div>
<div class="hour cloudy">
<h4>11am</h4>
80
</div>
<div class="hour rain">
<h4>1pm</h4>
84
</div>
<div class="hour">
<h4>3pm</h4>
83
</div>
<br class="clear">
</div>
</section>
<section class="week group">
<div class="day">
<h4>Thursday</h4>
82 / 71
</div>
<div class="day rain">
<h4>Friday</h4>
79 / 65
</div>
<div class="day rain">
<h4>Saturday</h4>
77 / 67
</div>
<div class="day cloudy">
<h4>Sunday</h4>
79 / 70
</div>
<div class="day">
<h4>Monday</h4>
78 / 67
</div>
</section>
</article>
</body>
</html>