forked from suryanshsk/Python-Voice-Assistant-Suryanshsk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (32 loc) · 1000 Bytes
/
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
<!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 style=" font-size: larger;font-family: sans-serif;font-weight:bolder;color: brown;">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>
</ul>
</nav>
<!-- nav bar end -->
<div class="A">
<pre><h3>NOTICE : - THIS IS UNDER MAINTENANCE</h3></pre>
</div>
<div class="B">
</div>
<div id="assistant">
<div id="animation"></div>
<button id="start-button">Speak</button>
</div>
<script src="./script.js"></script>
</body>
</html>