-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
71 lines (64 loc) · 2.66 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
69
70
71
<!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="icon" href="Image/icons8-cloud-96.png" type="image/gif" sizes="16x16">
<script src="./api.js" defer></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<main>
<div class="inter">
<h2>WEATHER APP</h2>
<div class="card">
<div class="search">
<input type="text" class="search-bar" id="location" placeholder="Enter location">
<button type="submit" id="submit_btn"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1.5em" xmlns="http://www.w3.org/2000/svg"><path d="M10,18c1.846,0,3.543-0.635,4.897-1.688l4.396,4.396l1.414-1.414l-4.396-4.396C17.365,13.543,18,11.846,18,10 c0-4.411-3.589-8-8-8s-8,3.589-8,8S5.589,18,10,18z M10,4c3.309,0,6,2.691,6,6s-2.691,6-6,6s-6-2.691-6-6S6.691,4,10,4z"></path><path d="M11.412,8.586C11.791,8.966,12,9.468,12,10h2c0-1.065-0.416-2.069-1.174-2.828c-1.514-1.512-4.139-1.512-5.652,0 l1.412,1.416C9.346,7.83,10.656,7.832,11.412,8.586z"></path></svg></button>
</div>
</div>
<div class="weatherloading">
<h2 class="city"></h2>
<h1 class="temp"></h1>
<div class="flex">
<img src="https://openweathermap.org/img/wn/04n.png" alt="" class="icon" />
<div class="description"></div>
</div>
<div class="humidity"></div>
<div class="wind"></div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>Rookies with Biscuits</h4>
<ul>
<li><a href="aboutus.html">about us</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Get help</h4>
<ul>
<li><a href="FAQ.html">FAQ</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Follow us</h4>
<div class="social-links">
<a href="social/fb.html"><i class="fab fa-facebook-f"></i></a>
<a href="social/insta.html"><i class="fab fa-instagram"></i></a>
<a href="social/Ln.html"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>