forked from facn5/WeatherAPIGet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
52 lines (50 loc) · 1.44 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
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<head>
<title>WeatherAPI</title>
<link rel="stylesheet" type="text/css" href="styles/style.css">
</head>
<body>
<div class="Welcome"> <h1> Welcome to WeatherGetAPI</h1>
<div id="b-search-container">
<div id="search-container">
<select name="selector" id="zoneSelector">
<option>Select Time Zone</option>
<option value="Asia">Asia</option>
<option value="Europe">Europe</option>
<option value="America">America</option>
<option value="Africa">Africa</option>
</select>
<input name="cityName" id="textField" type="text" placeholder="Enter city name">
<button id="sBtn" type="button">Search</button>
</div>
</div>
<div class="display">
<div class="big-container">
<div class="container">
<div class="first-column">
<p id="nameLabel"></p>
<p id="timeLabel"></p>
</div>
<div class="second-column">
<div id="logo"></div>
</div>
<div class="third-column">
<div class="temp">
<p id="tempOut"></p>
<p id="output"></p>
</div>
<div class="info">
<p id="windLabel"></p>
<p id="humidityLabel"></p>
</div>
</div>
<div id="photo"></div>
</div>
</div>
</div>
</body>
<script src="models/app.js"></script>
</html>