-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather App</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div class="container">
<header class="header">
<h1>Weather App</h1>
<button id="dark-mode-toggle" aria-label="Toggle dark mode">🌙 Dark Mode</button>
</header>
<div class="search">
<input type="text" id="city-input" placeholder="Enter city name" autocomplete="off" />
<div id="city-suggestions" class="suggestions-container"></div>
<!--<input id="city-input" type="text" placeholder="Enter city" aria-label="City name" />
<ul id="city-suggestions" class="suggestions"></ul> -->
<button id="search-btn" aria-label="Search for city weather">Search</button>
</div>
<div id="error-display" class="error-display" aria-live="polite"></div>
<div id="weather-display" class="weather-display" aria-live="polite">
<p>Search for a city's weather to see details here.</p>
</div>
<div id="forecast" class="forecast"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>