-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Forecast</title>
<link rel="stylesheet" href="style.css"/>
<script src="script.js" defer></script>
</head>
<body>
<h1>Weather Forecast</h1>
<div class="container">
<div class="weather-input">
<h3>Enter city name</h3>
<input class="city-input" type="text" placeholder="eg:Nashik,Pune,etc"/>
<button class="search-btn">Search</button>
</div>
<div class="weather-data">
<div class="current-weather">
<div class="details">
<h2>(____)(____)</h2>
<h6>Temp:_°C</h6>
<h6>Wind:_m/s</h6>
<h6>Humidity:_%</h6>
</div>
</div>
<div class="days-forecast">
<h2>5 days forecast</h2>
<u1 class="weather-cards">
<li class="card">
<h3>(____)</h3>
<h6>Temp:_°C</h6>
<h6>Wind:_m/s</h6>
<h6>Humidity:_%</h6>
</li>
<li class="card">
<h3>(____)</h3>
<h6>Temp:_°C</h6>
<h6>Wind:_m/s</h6>
<h6>Humidity:_%</h6>
</li>
<li class="card">
<h3>(____)</h3>
<h6>Temp:_°C</h6>
<h6>Wind:_m/s</h6>
<h6>Humidity:_%</h6>
</li>
<li class="card">
<h3>(____)</h3>
<h6>Temp:_°C</h6>
<h6>Wind:_m/s</h6>
<h6>Humidity:_%</h6>
</li>
<li class="card">
<h3>(____)</h3>
<h6>Temp:_°C</h6>
<h6>Wind:_m/s</h6>
<h6>Humidity:_%</h6>
</li>
</u1>
</div>
</div>
</div>
</body>
</html>