-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Tool</title>
<link rel="stylesheet" href="weather.css">
</head>
<body>
<div class="card">
<div class="search">
<input type="text" placeholder="Enter city">
<button><img src="images/search.svg" alt=""></button>
</div>
<div class="error">
<img src="images/error-905.svg" alt="" style="width:60px; margin-top: 20px;">
<p style="margin-top: 10px; font-size: 40px;">Invalid City Name</p>
</div>
<div class="weather">
<img src="images/clear.svg" alt="" class="weather-icon">
<h1 class="temp">34°C</h1>
<h2 class="city">Delhi</h2>
<div style=" display:flex; align-items: center; margin-left: 130px; margin-right: 130px;">
<h2 style="margin: 5px; font-size: 20px;">Feels like</h2>
<h2 style="font-size: 20px" class="feels">35°C</h2>
</div>
<div class="details">
<div class="det">
<img src="images/humidity.svg" alt="" >
<div>
<p class="humidity">40%</p>
<p>Humidity</p>
</div>
</div>
<div class="det">
<img src="images/wind.svg" alt="" >
<div>
<p class="wind">10 km/hr</p>
<p>Wind</p>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="weather.js"></script>
</html>