-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.52 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather API webpage</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="media.css">
<script src="app.js" defer></script>
</head>
<body>
<h1>Weather Data</h1>
<p>You can find your current weather in this webpage. Also to know more about weather condition in other cities type in search bar.</p>
<div id="container">
<div id="search-tab">
<form id="form">
<div id="form-control">
<input type="text" id="search" name="search" placeholder="Search by city"/>
<button id="btn">Enter</button>
</div>
</form>
</div>
<div id="container-wrapper">
<h3>Weather in <span id="cityname"></span>, <span id="country"></span></h3>
<h4 id="temperature"></h4>
<div id="cloud-img">
<img src="" alt="" id="weather-icon" />
<p id="description"></p>
</div>
<div id="content">
<p>Humidity: <span id="humidity"></span></p>
<p>Wind Speed: <span id="speed"></span></p>
<div id="suntime">
<div>Sunrise: <p id="sunriseTime"></p></div>
<div>Sunset: <p id="sunsetTime"></p></div>
</div>
</div>
</div>
</div>
<p id="demo"></p>
</body>
</html>