-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 899 Bytes
/
index.html
File metadata and controls
38 lines (34 loc) · 899 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Voice Weather App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>🌤️ Voice Weather App</h1>
<p id="datetime"></p>
</header>
<main>
<div class="controls">
<input type="text" id="cityInput" placeholder="Or type a city..." />
<div>
<button id="getWeather">📍 Location</button>
<button id="voiceSearch">🎙️ Speak</button>
<button id="manualSearch">🔍 Search</button>
</div>
</div>
<div id="weather" class="weather-box">
<p>Waiting for input...</p>
</div>
</main>
<footer>
<p></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>