text-to-speech-demo / index.html
LukaVidakovic's picture
Update index.html
c0706c7 verified
raw
history blame contribute delete
No virus
1.09 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat with Labsoft AI</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<a href="https://www.labsoft.ai" target="_blank" id="logo-link">
<img src="Logo.png" alt="Logo" id="logo-img" />
</a>
<div class="container">
<h1>Chat with Labsoft AI Assistant</h1>
<input
type="text"
id="questionInput"
placeholder="Ask a question..."
onkeypress="handleKeyPress(event)" />
<button onclick="sendQuestion()">
<span class="button-content">Send</span>
</button>
<br /><br />
<audio id="audioResponse" controls></audio>
<div class="powered-by">
Powered by
<a href="https://www.labsoft.ai" target="_blank" class="labsoft-link">
labsoft.ai
<img src="Logo.png" alt="Logo" class="logo-img-pb" />
</a>
</div>
</div>
</body>
</html>