-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<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=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="search">
<i class="fa-solid fa-location-dot" id="location"></i>
<input type="text" placeholder="Enter Your Location" spellcheck="false" id="input" autocomplete="off">
<i class="fa-solid fa-magnifying-glass" id="btn"></i>
</div>
<div class="weather">
<img src="./images/rain.png" class="weather-img">
<h1 class="temp">...</h1>
<h3 class="felt-temp">...</h3>
<h2 class="city">...</h2>
<div class="details">
<div class="col">
<img src="./images/humidity.png">
<div>
<p class="humidity">...</p>
<p class="ortak">Humidity</p>
</div>
</div>
<div class="col">
<img src="./images/wind.png">
<div>
<p class="wind">...</p>
<p class="ortak">Wind Speed</p>
</div>
</div>
</div>
</div>
<div class="not-found">
<div class="box">
<img src="./images/404.png" alt="">
<p>Location not found!</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="app.js"></script>
</body>
</html>