-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (36 loc) · 1.42 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
<html>
<head>
<title>My Selfie App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcamjs/1.0.26/webcam.js"></script>
</head>
<body>
<div class="container">
<center>
<a href="" id="link" download="myselfie.png"></a>
<h1>Voice Selfie App
<img id="logo_img" src="selfie.jpeg">
</h1>
<hr>
<h4 style="color:red;">Please press allow as soon as popup comes. After you give a voice command</h4>
<div class="form-group">
<h3>Say "take my selfie"</h3>
<label>Your voice output : </label>
<textarea class="form-control" id="textbox" readonly="true"></textarea>
</div>
<button class="btn btn-primary" onclick="start()">Start</button>
<p>Press the Start button</p>
<label>Your webcam : </label>
<div id="camera"></div>
<br>
<label>Your selife Will Display Here: </label>
<div id="result" ></div>
</center>
</div>
<script src="main.js"></script>
</body>
</html>