File size: 1,084 Bytes
0853986 8d06e4a 74ac545 0853986 8d06e4a 74ac545 8d06e4a 0853986 74ac545 0853986 74ac545 |
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 |
<!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="{{ url_for('static', filename='css/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="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>
|