-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (22 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>100 boxes</title>
</head>
<body>
<canvas id="c" width="780" height="780" style="border: 1px solid black;"></canvas>
<div style="display: flex; padding-top: 10px;">
<div style="text-align: center; font-size: 25px; width: 80px; height: 30px; padding-top: 10px;">Timer:</div>
<div id="time" style="border: 1px solid black; width: 80px; height: 40px; font-size: 30px; text-align: center;">
</div>
<div style="text-align: center; font-size: 25px; width: 80px; height: 30px; padding-top: 10px;">Result:</div>
<div id="result" style="border: 1px solid black; width: 80px; height: 40px; font-size: 30px;
text-align: center;"></div>
</div>
<script src=" https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.4.0/fabric.min.js"> </script>
<script src="app.js">
</body >
</html >