-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.12 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
<!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" />
<title>Weather App</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<script src="https://unpkg.com/js-alert/dist/jsalert.min.js"></script>
<script
src="https://kit.fontawesome.com/1fb5b48ec8.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="card">
<div class="search">
<input type="text" placeholder="Search" class="search-bar" />
<button><i class="fa-solid fa-search"></i></button>
</div>
<div class="weather loading">
<h2 class="city">Weather in Delhi</h2>
<br />
<h1 class="temp">35°C</h1>
<div class="flex">
<img src="" alt="" class="icon" />
<div class="description">Cloudy</div>
</div>
<div class="humidity">Humidity: 65</div>
<div class="wind">Wind speed: 6.5 km/h</div>
</div>
</div>
</body>
</html>