-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 975 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
30
<!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">
<meta name="description" content="A simple web app to help you find the weather in any region of the world through a simple search">
<title>weather App</title>
<link rel="icon" href="BG_images/Weather-icon.webp">
<link rel="stylesheet" href="weather.css">
<script src="weather.js" defer></script>
</head>
<body>
<div id="topbar">
<div id="infobtn">
i
</div>
<div id="locationbtn">
<img src="BG_images/locationicon.png" alt="auto choose the location">
</div>
</div>
<div id="search">
<input type="text" id="searchhere" placeholder="Enter the Location" ><img id="searchicon" src="BG_images/search.png" alt="Search for weather">
</div>
<div id="weathershow"></div>
</body>
</html>