-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (62 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./Weather-icon.webp" type="image/x-icon">
<title>WEATHER APP</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<main>
<h1>WEATHER APP</h1>
<br>
<form action="">
<input placeholder="ENTER ANY CITY NAME" type="text" name="" id="inp" autocomplete="off" />
<button><i class="fa-solid fa-magnifying-glass"></i></button>
</form>
<section class="result">
<figure class="name" id="city">
<figcaption>KARACHI</figcaption>
<img src="https://flagsapi.com/PK/shiny/64.png" width="40px" alt="">
</figure>
<figure class="temperature" id="temp">
<img src="http:openweathermap.org/img/wn/10d@4x.png" alt="">
<figcaption>
<span>36</span>
<sup>0</sup>
</figcaption>
</figure>
<p class="description">
Overcast Clouds
</p>
<ul>
<li>
<span>Clouds</span>
<i class="fa-solid fa-cloud"></i>
<span id="clouds">98</span>%
</li>
<li>
<span>Humidity</span>
<i class="fa-solid fa-droplet"></i>
<span id="humidity">55</span>%
</li>
<li>
<span>Pressure</span>
<i class="fa-solid fa-gauge"></i>
<span id="pressure">1001</span>hpa
</li>
</ul>
</section>
</main>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="script.js"></script>
</body>
</html>