-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" >
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
</head>
<style>
</style>
<body>
<div id="head"><p id="heading">
Hand Written Digit Prediction</p>
</div>
<p id="head_text">Please draw a digit from 0-9</p>
<div id="box">
<canvas id="canvas_box" height="200px" width="200px"></canvas>
</div>
<div id="buttons">
<button id="clear-button" class="btn btn-dark">Clear</button>
<button id="predict-button" class="btn btn-dark">Predict</button>
</div>
<div id="output">
<p class="text" >PREDICTION:</p>
<p id="result" class="text"></p>
</div>
<p id="footer">-Created by Sarthak Jain</p>
<script src="digit-recognition.js"></script>
</body>
</html>