-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (51 loc) · 1.57 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
<!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="stylesheet" href="style.css" />
<!-- fontawesome cdn -->
<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="shortcut icon" href="./assets/img/weather-app.png" type="image/x-icon">
</head>
<body>
<video id="backgroundVideo" playsinline autoplay muted loop>
<source src="./assets/bck-videos/current.mp4" type="video/mp4" />
</video>
<div class="container">
<div class="card">
<div class="inputDiv">
<button type="button" class="loc-btn">
<span class="loc-span">
<img src="./assets/img/quote.png" class="loc-img">
Get Your Location Here
</span>
<i class="fa-solid fa-location-dot"></i>
</button>
<input
type="text"
class="location"
placeholder="Enter Your Location"
/>
<button class="searchBtn">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
<div class="bottomDiv">
<div class="weatherIcon"></div>
<div class="weatherTemperature"></div>
<div class="humSpeed"></div>
</div>
</div>
</div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>