-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·38 lines (37 loc) · 1012 Bytes
/
index.html
File metadata and controls
executable file
·38 lines (37 loc) · 1012 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Digit Recognition</title>
<link
href="https://fonts.googleapis.com/css?family=Source Sans Pro"
rel="stylesheet"
/>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<h1>Digit Recognition</h1>
<main>
<aside>
<canvas id="input"></canvas>
<div class="buttons">
<button id="button-clear">Clear</button>
<button id="button-analyze" class="right">Analyze</button>
</div>
</aside>
<article>
<p>
Draw a single digit in the canvas on the right (touch support coming
soon). When ready, press the analyze button below to see the number
extracted
</p>
<div class="views">
<div class="extract">
<canvas id="focus" height="84px" width="84px"></canvas>
</div>
</div>
</article>
</main>
<script src="dist/main.js"></script>
</body>
</html>