-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (56 loc) · 1.75 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
<!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" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/weather.png">
<title>Weather App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="container">
<input list="cities" type="search" name="search" id="search" placeholder="Search Cities">
<datalist id="cities">
<option>Ghaziabad</option>
<option>delhi</option>
</datalist>
<article id="current-forecast">
<h1 class="city">City Name</h1>
<p class="temp">--</p>
<p class="description">--</p>
<p class="min-max-temp">-- --</p>
</article>
<article id="hourly-forecast">
<h1>Hourly Forecast</h1>
<section class="hourly-container">
<article>
<h3 class="time">--</h3>
<p>--</p>
<p class="hourly-temp">--</p>
</article>
</section>
</article>
<article id="five-day-forecast">
<h1>5-Days Forecast</h1>
<section class="five-day-forecast-container">
<article class="day-wise-forecast">
<h3 class="">--</h3>
<p>--</p>
<p class="min-temp">--</p>
<p class="max-temp">--</p>
</article>
</section>
</article>
<article id="feels-like">
<h3>Feels Like</h3>
<p class="feels-like-temp">--</p>
</article>
<article id="humidity">
<h3>Humidity</h3>
<p class="humidity-text">--</p>
</article>
</main>
<script src="main.js"></script>
</body>
</html>