-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (48 loc) · 2.27 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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Illegal Parking Buzzer - Arnav</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css" rel="stylesheet">
</head>
<body>
<!-- Body Starts -->
<div class="head text-center h1 mt-3" style="font-family: 'Poppins'; font-weight: 700;">Illegal Parking
Buzzer</div>
<!--
<button type="button" class="btn btn-outline-secondary btn-rounded d-flex fixed-bottom"
data-mdb-ripple-color="dark">ARNAV MEHTA</button>
-->
<div class="buttons d-flex flex-row space-evenly w-100">
<button type="button" class="main-btn2 btnn2 btn-rounded " style="background-color: #f93535e0;" onclick="init()">Start</button>
<button type="button" class="main-btn btnn1 btn-rounded" onclick="stop()">Stop</button>
</div>
<div class="container">
<div id="label-container" class="label-container ml-3 d-flex flex-column "
style="padding: 50px; margin-top: 50px;"
>RESULTS
</div>
<div id="webcam-container"></div>
</div>
<br><br><br><br>
<audio id="VOICE">
<source src="FILES/voice.mp3" type="audio/mpeg">
Your browser does not support HTML5 audio.
</audio>
<!-- Below goes the SCRIPTS -->
<script src="script.js" type="text/javascript" charset="utf-8"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/[email protected]/dist/teachablemachine-image.min.js"></script>
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js"></script>
<!-- Scripts Ends -->
</body>
</html>