-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (21 loc) · 997 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title>Weather App</title>
<link rel="shortcut icon" type="image/png" href="images/weather-favicon.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="search-area">
<div id="top-line"><h1>Let's feel the nature...</h1></div><br></br>
<input id="city" autocomplete="off" placeholder="Enter the name of city..."></input><br></br>
<button id="getWeatherForecast"><b>Search</b></button>
<div id="showWeatherForecast"></div><br></br><br></br><br></br>
<footer><h4>Developed with ❤️ by <a href="https://linktr.ee/jaigora">Jai Gora</a></h4></footer>
</div>
</body>
</html>