-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1005 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Open Mind Starter</title>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="img-sample1">
<video id="video1" width="460" height="345" autoplay></video>
<button class="btn-1">Add Class1 Image Sample</button>
<p class="image-counter1">0/ minimum 10</p>
</div>
<div class="img-sample2">
<video id="video2" width="460" height="345" autoplay></video>
<button class="btn-2">Add Class2 Image Sample</button>
<p class="image-counter2">0/ minimum 10</p>
</div>
<div class="show-result">
<video id="video3" width="640" height="480" autoplay></video>
<h2 class="result-text"></h2>
<button class="submit-btn">Submit</button>
</div>
</body>
<script src="https://unpkg.com/ml5@0.4.3/dist/ml5.min.js"></script>
<script src="app.js"></script>
</html>