Voicee / index.html
KingNish's picture
Create index.html
6a35f6c verified
raw
history blame
No virus
1.06 kB
<!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="styles.css">
<script secura-auto src="secure.js"></script>
</head>
<body>
<div secura-auto class="container">
<h1>Voice Assistant</h1>
<div id="responseTime">Latency: 0ms</div>
<div class="indicator-wrapper">
<div id="userIndicator" class="indicator user-indicator">User: Nothing</div>
<div id="aiIndicator" class="indicator ai-indicator">AI: Listening</div>
</div>
<div class="button-group">
<button id="startStopButton">Start Listening</button>
</div>
<select id="voiceSelect">
<option value="Amy">Female</option>
<option value="Brian">Male</option>
<option value="OtherVoice">Other Voice</option>
</select>
</div>
<script src="main.js"></script>
<script src="secure.js"></script>
</body>
</html>