Update templates /index.html
Browse files- templates /index.html +7 -5
templates /index.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
<title>Speech to Text Converter</title>
|
7 |
|
8 |
<!-- Style CSS -->
|
9 |
-
<link rel="stylesheet" href="
|
10 |
</head>
|
11 |
<body>
|
12 |
|
@@ -14,7 +14,9 @@
|
|
14 |
<div class="container">
|
15 |
<h1>Speech to Text</h1>
|
16 |
<div class="button">
|
17 |
-
<button id="startButton"
|
|
|
|
|
18 |
<small>Tap to Record</small>
|
19 |
</div>
|
20 |
<div id="output"></div>
|
@@ -27,7 +29,7 @@
|
|
27 |
</div>
|
28 |
</div>
|
29 |
|
30 |
-
<!-- Script
|
31 |
-
<script src="
|
32 |
</body>
|
33 |
-
</html>
|
|
|
6 |
<title>Speech to Text Converter</title>
|
7 |
|
8 |
<!-- Style CSS -->
|
9 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
10 |
</head>
|
11 |
<body>
|
12 |
|
|
|
14 |
<div class="container">
|
15 |
<h1>Speech to Text</h1>
|
16 |
<div class="button">
|
17 |
+
<button id="startButton">
|
18 |
+
<img src="https://cdn-icons-png.flaticon.com/512/25/25682.png" alt="" width="50" height="50">
|
19 |
+
</button>
|
20 |
<small>Tap to Record</small>
|
21 |
</div>
|
22 |
<div id="output"></div>
|
|
|
29 |
</div>
|
30 |
</div>
|
31 |
|
32 |
+
<!-- Script JS -->
|
33 |
+
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
|
34 |
</body>
|
35 |
+
</html>
|