-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.03 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
<!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>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 city" autocomplete="off">
<datalist id="cities">
</datalist>
<article id="current-forecast">
<h1 class="city">City Name</h1>
<p class="temp">--</p>
<p class="description">Description</p>
<p class="min-max-temp">High Low</p>
</article>
<article id="hourly-forecast">
<h1>Hourly Forecast</h1>
<section class="hourly-container">
<article>
<h3 class="time">Now</h3>
<p class="icon"></p>
<p class="hourly-temp">--</p>
</article>
</section>
</article>
<article id="five-day-forecast">
<h1>5-Day Forecast</h1>
<section class="five-day-forecast-container">
<article class="day-wise-forecast">
<h3>Today</h3>
<p class="icon">--</p>
<p class="min-temp">--</p>
<p class="max-temp">--</p>
</article>
<article class="day-wise-forecast">
<h3>Wed</h3>
<p class="icon">--</p>
<p class="min-temp">--</p>
<p class="max-temp">--</p>
</article>
</section>
</article>
<article id="feels-like">
<h1>Feels Like</h1>
<p class="feels-like-temp">--</p>
</article>
<article id="humidity">
<h1>Humidity</h1>
<p class="humidity-value">--</p>
</article>
</main>
<script src="main.js"></script>
</body>
</html>