-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.html
69 lines (65 loc) · 2.05 KB
/
result.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<title>Speech-To-Text-Converter</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.1/css/font-awesome.min.css" />
<style type="text/css">
body{
font-family: verdana;
width: 100%;
background-image: url("bg.jpg");
background-repeat: no-repeat;
background-size: cover;
overflow-x: hidden;
}
.spinner{
width: 80px;
height: 80px;
border: 2px solid #f3f3f3;
border-top:3px solid #f25a41;
border-radius: 100%;
position: absolute;
top:0;
bottom:0;
left:0;
right: 0;
margin: auto;
animation: spin 1s infinite linear;
}
#result{
height: 180px;
background-color: white;
box-shadow: 0 0 10px 0 #bbb;
margin-bottom: 30px;
font-size: 14px;
line-height: 25px;
}
button-con {
position: relative;
border: 1px solid currentColor;
font-size: 1.1rem;
color: #4f93ce;
margin: 3rem 0;
padding: 0.75rem 3rem;
cursor: pointer;
-webkit-transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
overflow: hidden;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
</style>
</head>
<body>
<center><img class="center" src="http://scanta.io/wp-content/uploads/2019/10/imggg.png">
<h1 align="center"><span style="color: #ff7e00">Speech to Text Converter </span><br><span style="font-size: 15px;color: black; font-weight: lighter;"></span></h1>
<center>Speech Input To Text Result</center></br>
<div id="result" align="center">
<table>
{% for key, value in result.items() %}
<tr>
<td> Speech Text: </td>
<td> {{ value }} </td>
</tr>
{% endfor %}
</table></center>
</body>
</html>