forked from suryanshsk/Python-Voice-Assistant-Suryanshsk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (35 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voice Assistant</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- nav bar -->
<nav class="nave">
<ul>
<li><a class="logo">VOICE.py</a></li>
<li><a href="">Home</a></li>
<li><a href="">Features</a></li>
<li><a href="">Contact</a></li>
<li><a href="">About</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<!-- nav bar end -->
<div class="A">
<h3>🚧 NOTICE: THIS SITE IS UNDER MAINTENANCE 🚧</h3>
</div>
<div class="B">
<p>Welcome to VOICE.py! Our assistant is currently being updated for better performance.</p>
<p>Stay tuned for exciting new features!</p>
</div>
<div id="assistant">
<div id="animation"></div>
<button id="start-button">Speak to the Assistant</button>
</div>
<script src="./script.js"></script>
</body>
</html>