-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (38 loc) · 1.65 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
<!--https://teachablemachine.withgoogle.com/models/GpoeHGrbn/-->
<html>
<head>
<title>Sound Identification Web App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
</head>
<body>
<div class="col-xs-12 header_div text-center">
<h2>Sound Controlled Aliens</h2>
<p>Note : Play different sounds Clapping, Snaping, Bell to make the aliens dance</p>
</div>
<div class="main_div">
<center>
<br>
<button class="btn btn-warning" onclick="StartClassification()">START</button>
<h3 id="result_label">I can hear - </h3>
<h4 id="result_confidence">Accuracy</h4>
<br>
<img src="Lion.jpg" id="alien1" width="300" height="300">
<img src="cat.jpeg" id="alien2" width="300" height="300">
<img src="Cow.jpg" id="alien3" width="300" height="300">
<img src="Dog.webp" id="alien4" width="300" height="300">
</center>
</div>
<div class="copy_right_footer">
Developed By Max Chacon
</div>
<script src="main.js"></script>
</body>
</html>