-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (31 loc) · 1.37 KB
/
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
31
<!doctype html>
<html>
<head>
<!-- <link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet"> -->
<meta charset="UTF-8">
<meta name="discription" content="get the latest weather updates">
<meta name="Keywords" content="Weather,HTML,CSS,JavaScript,">
<meta name="author" content="Subhash">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRZZvVnYYC2dzQ5EzgdJl1sR-raQOF74DouXQzzl4-7_xYcJTZz" type="image/gif" sizes="16x16">
<link rel="stylesheet" href="weather.css" type="text/css">
<script src="./jquery.js"></script>
<title>
Weather app using api.
</title>
<script src="weather.js" type="text/javascript"></script>
</head>
<body onload="defult()">
<div id="WeatherContent" align="center">
<div id="inpt">
<div id="dis"><H3>WEATHER APPLICATION<br><br></H3></div>
<input id="city" placeholder="Enter the city name"><br>
<button onclick="weathr()">
WEATHER
</button>
<p id ="temp"></p>
<img src="" id="img">
</div>
</div>
</body>
</html>