-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmain.html
30 lines (29 loc) · 870 Bytes
/
main.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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="main.js"></script>
<title>My Weather</title>
</head>
<body>
<div class="name">
My Weather
</div>
<div class="input">
<form>
<input id="city" name="city" type="text" placeholder="city" value="Lucknow">
<input id="btn" name="btn" readonly value="Check Weather">
</form>
</div>
<div class="weather">
TEMPRATURE :
<span class="temprature"></span>           
HUMIDITY :
<span class="humid"></span>
</div>
</body>
</html>