-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (25 loc) · 936 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sensa Makara | Universitas Indonesia</title>
</head>
<body>
<div class="container">
<div style="width: 50%">
<video class="input_video" width="320px" height="240px"></video>
<canvas class="output_canvas" width="320px" height="240px"></canvas>
<input type="text" style="width: 100%" />
<div class="text-selection"></div>
<ul class="suggestions"></ul>
<div class="indicator" style="user-select: none"></div>
</div>
<div class="board"></div>
</div>
<footer>Made by Sensa Makara team at Universitas Indonesia</footer>
<script type="module" src="/main.js"></script>
</body>
</html>