-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
55 lines (48 loc) · 1.96 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/main.css">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech Recognition</title>
</head>
<body class="blue">
<h1 class="center">Speech Recognition</h1>
<main>
<div class="container">
<p>Click on this button, you can ask any question, ask to open a website or search for a query</p>
<button class="btn btn-large">Start Listening <i class="material-icons">hearing</i></button>
<br>
<br>
<div class="preloader-wrapper active valign-wrapper center" id="loader">
<div class="spinner-layer spinner-red-only">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
</div>
<div>
<p class="result">Input :</p>
<p class="output"></p>
</div>
</div>
</main>
<footer class="page-footer blue darken-4">
<div class="container">
<p class="right-align">Made by Adeen Shukla</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="script.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>