-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div style="background: #1a1a1a">
<div class="container">
<div class="row">
<div class="col">
<canvas></canvas>
</div>
<div class="col">
<button id="startBtn" class="btn btn-dark btn-block rounded-0">start</button>
<button id="endBtn" class="btn btn-danger btn-block rounded-0">end</button>
<button id="clearBtn" class="btn btn-warning btn-block rounded-0">clear</button>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>