semalab / templates /index.html
Tri4's picture
Update templates /index.html
8d06e4a verified
raw
history blame
970 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech to Text Converter</title>
<!-- Style CSS -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="main">
<div class="container">
<h1>Speech to Text</h1>
<div class="button">
<button id="startButton"><img src="https://cdn-icons-png.flaticon.com/512/25/25682.png" alt="" width="50" height="50"></button>
<small>Tap to Record</small>
</div>
<div id="output"></div>
<div class="buttons">
<button id="copyButton">Copy Text</button>
<button id="clearButton">Clear Text</button>
</div>
<div id="convert_text"></div>
</div>
</div>
<!-- Script jS -->
<script src="./script.js"></script>
</body>
</html>