-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 834 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>The Weather App</h1>
</header>
<div class="main">
<div id="search">
<label for="city">City Name</label>
<input type="text" id="city">
<button type="button">Show Weather!</button>
</div>
<div id="load">Fetching Data.....</div>
<div id="weather">
<h1 id="weatherCity">City Name</h1>
<div id="weatherDescription">Weather Description</div>
<div id="weatherTemperature">Temperature</div>
</div>
</div>
<script src="init.js"></script>
<script src="weather-data.js"></script>
<script src="app.js"></script>
</body>
</html>