-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.45 KB
/
index.html
File metadata and controls
46 lines (42 loc) · 1.45 KB
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
<!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="stylesheet" href="style.css">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title>Weather App</title>
</head>
<body>
<main class="container">
<input list="cities" type="search" placeholder="Search City" name="search" id="search" autocomplete="off">
<datalist id="cities">
<option></option>
</datalist>
<article id="current-forecast">
<h1 class="city">City name</h1>
<p class="temp">Temp</p>
<p class="description">Description</p>
<p class="min-max-temp">--- ---</p>
</article>
<article id="hourly-forecast">
<h1>Hourly Forecast</h1>
<section class="hourly-container"></section>
</article>
<article id="five-day-forecast">
<h1>5-Day Forecast</h1>
<section class="five-day-forecast-container"></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>