-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (108 loc) · 4.23 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CloudyWorld</title>
<link rel="stylesheet" href="style.css" />
<script src="jscript.js"></script>
</head>
<div class="heading">
<p>Cloudy<b>World.com</b></p>
</div>
<body>
<div class="tagline">
<p><b>Get weather update of any place on yor desktop. Now plan like never before</b></p>
</div>
<div class="databox">
<div class="searchTitle">
<div class="data">
<a id="data1">Search what you like? </a><br><a id="data2"><b>Like what you search !!</b></a>
</div>
<div class="flexbox">
<div class="search">
<div>
<input type="text" placeholder="Search . . ." required>
</div>
</div>
</div>
<div class="container">
<div class="current-info">
<div class="date-container">
<div class="time" id="time">
1:30 <span id="am-pm">PM</span>
</div>
<div class="date" id="date">
Tuesday, 2 May
</div>
<div class="other" id="current-wether-items">
<div class="weather-item">
<p>Humidity</p>
<p>80%</p>
</div>
<div class="weather-item">
<p>Pressure</p>
<p>111</p>
</div>
<div class="weather-item">
<p>Wind Speed</p>
<p>224</p>
</div>
<div class="weather-item">
<p>Cold</p>
<p>0</p>
</div>
</div>
</div>
<div class="place-container">
<div class="time-zone" id="time-zone">
Delhi
<div class="country" id="country">INDIA</div>
</div>
</div>
</div>
</div>
<div class="future-forecast">
<div class="today" id="current-temp">
<div class="day">Wednesday</div>
<img src="https://openweathermap.org/img/wn/10d@2x.png" alt="weather icon" class="w-icon">
<div class="other">
<div class="temp">Night 28.6° C</div>
<div class="temp">Day 35.6° C</div>
</div>
</div>
<div class="weather-forecast" id="weather-forecast">
<div class="weather-forecast-item">
<div class="day">Thursday</div>
<img src="https://openweathermap.org/img/wn/10d@2x.png" alt="weather icon" class="w-icon">
<div class="temp">Night -25.6° C</div>
<div class="temp">Day -35.6° C</div>
</div>
<div class="weather-forecast" id="weather-forecast">
<div class="weather-forecast-item">
<div class="day">Friday</div>
<img src="https://openweathermap.org/img/wn/10d@2x.png" alt="weather icon" class="w-icon">
<div class="temp">Night -25.6° C</div>
<div class="temp">Day -35.6° C</div>
</div>
<div class="weather-forecast" id="weather-forecast">
<div class="weather-forecast-item">
<div class="day">Saturday</div>
<img src="https://openweathermap.org/img/wn/10d@2x.png" alt="weather icon" class="w-icon">
<div class="temp">Night -25.6° C</div>
<div class="temp">Day -35.6° C</div>
</div>
<div class="weather-forecast" id="weather-forecast">
<div class="weather-forecast-item">
<div class="day">Sunday</div>
<img src="https://openweathermap.org/img/wn/10d@2x.png" alt="weather icon" class="w-icon">
<div class="temp">Night -25.6° C</div>
<div class="temp">Day -35.6° C</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>