-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather.html
More file actions
35 lines (27 loc) · 986 Bytes
/
Copy pathweather.html
File metadata and controls
35 lines (27 loc) · 986 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
30
31
32
33
34
35
<!Doctype html>
<html>
<head>
<title>Weather</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="app.js"></script>
</head>
<body>
<div class="header">
<ul>
<li><img src="Images/logo.png" class = "logoImg"/></li>
<li class = "headings"><a href="index.html">Home</a></li>
<li class = "headings" ><a href="#getstarted">Get Started</a></li>
<li class = "headings" ><a href="#aboutus">About Us</a></li>
<li class = "headings" ><a href="#contact">Contact</a></li>
<li class = "headings" ><a href="#">Sign In</a></li>
</ul>
</div>
<h1>Get The Weather For a Location</h1>
<p>Enter Your Location</p>
<input type="text" id="searchUser" placeholder="Location">
<button id="submit">Submit</button>
<div id="show"></div>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src = "js/app.js"></script>
</body>
</html>