Spaces:
Sleeping
Sleeping
Create design.html
Browse files- templates/design.html +24 -0
templates/design.html
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
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 |
+
<!-- Link to CSS -->
|
8 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/design.css') }}">
|
9 |
+
</head>
|
10 |
+
<body>
|
11 |
+
<div class="mic-container">
|
12 |
+
<div class="circle">
|
13 |
+
<i class="fas fa-microphone"></i>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
|
17 |
+
<div id="output" class="output-container"></div>
|
18 |
+
|
19 |
+
<!-- Add FontAwesome for microphone icon -->
|
20 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/js/all.min.js"></script>
|
21 |
+
<!-- Script JS -->
|
22 |
+
<script src="{{ url_for('static', filename='js/design.js') }}"></script>
|
23 |
+
</body>
|
24 |
+
</html>
|