-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/f8732c7652.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="main">
<div class="card">
<div class="input-container">
<input type="text" placeholder="Enter City name" id="cityname">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
<div class="weather">
<img src="images/mist.png" alt="misty" id="Img">
<h1>25°C</h1>
<h2>Delhi</h2>
</div>
<div class="end">
<div class="humidity">
<img src="images/humidity.png" alt="humidity">
<p class="humid">48%</p>
<p>Humidity</p>
</div>
<div class="wind-speed">
<img src="images/wind.png" alt="wind">
<p class="wind">10.29 km/h</p>
<p>wind-speed</p>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>