-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
72 lines (57 loc) · 1.97 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="images/weather-icon.png" type="images/x-icon">
<link rel="stylesheet" href="style.css">
<title>Weather App</title>
</head>
<body>
<div class="box">
<div class="search">
<div>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<input type="search" class="city" name="city" id="city" placeholder="Enter Your Location">
</div>
<button for="city"><i class="fa fa-search" aria-hidden="true"></i>
</button>
</div>
<div class="container">
<div class="weather">
<img id="icon" src="images/cloud.png" alt="" />
<h1 id="temp" class="temp">22°c</h1>
<h2 class="name">New Delhi</h2>
</div>
<div class="temp2">
<div>
<h1 class="mintemp">18°c</h1>
<h4>Min Temp</h4>
</div>
<div>
<h1 class="maxtemp">24°c</h1>
<h4>Max Temp</h4>
</div>
</div>
<div class="detail">
<div class="col">
<img src="images/humidity.png" alt="">
</div>
<div>
<h1 class="humidity">50%</h1>
<h4>Humidity</h4>
</div>
<div class="col">
<img src="images/wind.png" alt="">
</div>
<div>
<h1 class="wind">5 Km/h</h1>
<h4>Wind Speed</h4>
</div>
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>