-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
43 lines (39 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://i.pinimg.com/originals/87/9e/00/879e002a9082b4d32901840cb70c0929.gif">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Weather.io</title>
</head>
<body>
<div class="container">
<header>
<h1><i class="fas fa-cloud-sun"></i> Weather.io</h1>
</header>
<div class="search-box">
<h2><i class="fas fa-search-location"></i> Enter a City</h2>
<div class="search-input">
<input type="text" id="city-input" placeholder="Enter city name" autocomplete="off">
<button id="search-btn">
<i class="fas fa-search"></i> Search
</button>
</div>
<div id="loading" class="loading" style="display: none;">
<i class="fas fa-spinner fa-spin"></i> Loading...
</div>
<ul id="suggestions"></ul>
<button id="current-location-btn" class="location-btn">
<i class="fas fa-map-marker-alt"></i>Use Current Location
</button>
<div id="error-message" class="error-message" style="display: none;"></div>
</div>
<footer>
<p>© 2024 Weather.io. All rights reserved.</p>
</footer>
</div>
<script src="./index.js"></script>
</body>
</html>