-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (49 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/6b6260744e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>weather-site-api</title>
</head>
<body>
<div class="weather-container">
<div class="search-container">
<input type="text" placeholder="Search location..." class="search-bar">
<button type="submit" class="search-button">
<i class="fa fa-search"></i>
</button>
</div>
<div class="card-container">
<div class="card loading">
<div class="city">
<i class="fas fa-map-marker-alt"></i>
<h3 class="city-name">Kolkata</h3>
</div>
<div><img src" " alt= "" class=" weather-icon"></img></div>
<div class="info">
<p class="date">today, 8 Dec </p>
<h2 class="temp"> <span class="temp-data">20</span>°C</h2>
<div class="details">
<div class="status">Sunny</div>
<div class="wind">
<h3><i class="fa fa-wind"></i> Wind </h3> <span>|</span>
<h3> <span class="wind-speed">19</span> km/h </h3>
</div>
<div class="hum">
<h3><i class="fa fa-tint"></i> Hum </h3> <span>|</span>
<h3> <span class="hum-details">22 </span> % </h3>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>