-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.62 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
65
66
67
68
<!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">
<meta name="author" content="Yaseen Akbari">
<link rel="icon shortcur" href="images/icon.png">
<!-- Google font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Boxicons CSS -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="css/style.css">
<title>Weather App</title>
</head>
<body>
<div class="wrapper">
<header><i class="bx bx-left-arrow-alt"></i> Weather App</header>
<section class="input-part">
<p class="info-text">
Please enter a valid city name
</p>
<input type="text" placeholder="Enter the city name" spellcheck="false" required>
<div class="separator"></div>
<button >Get Your Location</button>
</section>
<section class="weather-part">
<img src="images/icons/cloud.svg" alt="Weather Icon">
<div class="temp">
<span class="number">_</span>
<span class="deg">°</span>C
</div>
<div class="weather">_</div>
<div class="location">
<i class="bx bx-map"></i>
<span>_, _</span>
</div>
<div class="bottom-details">
<div class="column feels">
<i class="bx bxs-thermometer"></i>
<div class="details">
<div class="temp">
<span class="number-2">_</span>
<span class="deg">°</span>C
</div>
<p>Feels like</p>
</div>
</div>
<div class="column wind">
<i class="bx bx-wind"></i>
<div class="details">
<span class="number">_Km/h</span>
<p>Wind</p>
</div>
</div>
<div class="column humidity">
<i class="bx bxs-droplet-half"></i>
<div class="details">
<span class="number">_%</span>
<p>Humidity</p>
</div>
</div>
</div> <!-- /bottom details -->
</section>
</div>
<script src="js/weather-app.js"></script>
</body>
</html>