-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (23 loc) · 903 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
<!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">
<title>Weather App | by Ayush</title>
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<h1>✨Check your city's weather✨</h1>
<div class="cityDiv">
<input class="cityInputClass" placeholder="Enter City Name" type="text" name="cityInput" id="cityInput">
<button id="cityBtn" type="button">View weather</button>
</div>
<div id="cityWeatherOutput"></div>
<footer>
<div>Made with ❤️ by Ayush Sahu. All rights reserved.</div>
<div id="github-link-div">See code at - <a href="https://github.com/AyushSahu77">GitHub</a></div>
</footer>
<script src="assets/script.js" type="text/javascript"></script>
</body>
</html>