-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 808 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 808 Bytes
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p id="heading">Weather App</p>
<div id="search">
<input id="city" type="text" placeholder="Search for a city">
<button id="searchBtn" type="button">SUBMIT</button>
</div>
<div id="box">
<div id="boxMsg">Please enter the city name</div>
<div id="weatherData">
<div id="disCity"></div>
<div id="disTemp"></div>
<div id="disHum"></div>
<div><img id="disIcon"></div>
<div id="disLine"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>