-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>WEATHER</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h3>CURRENT WEATHER</h3>
<div class="card">
<div class="search">
<input class="jai" type="text" placeholder="enter city name" width="60px">
<button class="btn"><img src="search.png" height="10px" width="10px"></button>
</div>
<div class="weather">
<img src="rain.png" class="weather-icon" width="120px" height="120px" >
<h2 class="temp">22°C</h2>
<h3 class="city">New York</h3>
<div class="details">
<div class="col">
<img class="im_1" src="humidity.png" width="30px" height="30px">
<div>
<p class="humidity">50%</p>
<p class="humid">humidity</p>
</div>
</div>
<div class="co">
<img class="im_2" src="wind.png " width="30px" height="36px">
<div>
<p class="wind">15 km/h</p>
<p class="winds">Wind Speed</p>
</div>
</div>
</div>
</div>
</div>
<script src="1.js"></script>
</body>
</html>