Update templates /index.html
Browse files- templates /index.html +22 -6
templates /index.html
CHANGED
@@ -3,15 +3,31 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>
|
7 |
-
|
|
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
-
|
11 |
-
|
12 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
</div>
|
14 |
|
15 |
-
|
|
|
16 |
</body>
|
17 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Speech to Text Converter</title>
|
7 |
+
|
8 |
+
<!-- Style CSS -->
|
9 |
+
<link rel="stylesheet" href="./style.css">
|
10 |
</head>
|
11 |
<body>
|
12 |
+
|
13 |
+
<div class="main">
|
14 |
+
<div class="container">
|
15 |
+
<h1>Speech to Text</h1>
|
16 |
+
<div class="button">
|
17 |
+
<button id="startButton"><img src="https://cdn-icons-png.flaticon.com/512/25/25682.png" alt="" width="50" height="50"></button>
|
18 |
+
<small>Tap to Record</small>
|
19 |
+
</div>
|
20 |
+
<div id="output"></div>
|
21 |
+
<div class="buttons">
|
22 |
+
<button id="copyButton">Copy Text</button>
|
23 |
+
<button id="clearButton">Clear Text</button>
|
24 |
+
</div>
|
25 |
+
|
26 |
+
<div id="convert_text"></div>
|
27 |
+
</div>
|
28 |
</div>
|
29 |
|
30 |
+
<!-- Script jS -->
|
31 |
+
<script src="./script.js"></script>
|
32 |
</body>
|
33 |
</html>
|