-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.61 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.61 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Digit Recognizer">
<meta name="author" content="Martin Kondor">
<title>Digit Recognizer</title>
<link rel="icon" sizes="115x93" href="https://martinkondor.github.io/img/icon.bmp">
<link rel="shortcut icon" sizes="115x93" href="https://martinkondor.github.io/img/icon.bmp">
<link rel="apple-touch-icon" sizes="115x93" href="https://martinkondor.github.io/img/icon.bmp">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"></script>
<!-- Public sources -->
<link href="public/css/main.css" rel="stylesheet">
<script src="public/js/model.js"></script>
<script src="public/js/main.js"></script>
</head>
<body>
<div class="container-fluid text-center mt-5">
<div id="board" class="mb-4"></div>
<h3>
Prediction: <span id="prediction" class="font-weight-bold"></span>
</h3>
<p>Press <i>space</i> to erase your drawing.</p>
<footer class="footer mt-5">
<p class="small">
This project is made by <a href="https://MartinKondor.github.io/">Martin Kondor</a>,
see the <a href="https://github.com/MartinKondor/DigitRecognizer">GitHub</a> page for more information.
</p>
</footer>
</div>
</body>
</html>