-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
70 lines (69 loc) · 1.93 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
<!DOCTYPE HTML>
<html>
<head>
<title>Simple Weather Widget</title>
<link href="style2.css" rel="stylesheet" type="text/css" media="all"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href='//fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
<div class="header-top">
<h2><img class="whe" src="sun.png" alt="" />Weather</h2>
<ul>
<li><p>°F</p></li>
</ul>
<div class="clear"> </div>
</div>
<div class="header-bottom">
<div class="header-bottom1">
<div class="header-head">
<h4>Chance of a Thunderstorm</h4>
<img src="rain.png" alt="" />
<h6>79</h6>
<div class="bottom-head">
<p>7:00 PM IST on September 26, 2016</p>
<p>Monday</p>
</div>
</div>
</div>
<div class="header-bottom1 header-bottom2">
<div class="header-head">
<h4>Chance of a Thunderstorm</h4>
<img src="rain.png" alt="" />
<h6>78</h6>
<div class="bottom-head">
<p>7:00 PM IST on September 27, 2016</p>
<p>Tuesday</p>
</div>
</div>
</div>
<div class="header-bottom1">
<div class="header-head">
<h4>Chance of a Thunderstorm</h4>
<img src="rain.png" alt="" />
<h6>79</h6>
<div class="bottom-head">
<p>Wednesday (7:00 PM IST on September 28, 2016</p>
<p>Wednesday</p>
</div>
</div>
</div>
<div class="header-bottom1 header-bottom2">
<div class="header-head">
<h4>Partly Cloudy</h4>
<img src="cloudy.png" alt="" />
<h6>79</h6>
<div class="bottom-head">
<p>Thursday (7:00 PM IST on September 29, 2016</p>
<p>Thursday</p>
</div>
</div>
</div>
<div class="clear"> </div>
</div>
</div>
</body>
</html>