-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (19 loc) · 1.23 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
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 style="text-align: center;">Make Some Best Moves</h1>
<div class="buttonClass">
<button id="punch" class="btn-lg" style="margin-left: 20%;">Punch (W/w))</button>
<button id="kick" class="btn-lg">Kick (E/e)</button><br>
<button id="backward" class="btn-lg">Backward (A/a)</button>
<button id="block" class="btn-lg" >Block(S/s))</button>
<button id="forward" class="btn-lg">Forward (D/d)</button>
</div>
<canvas id="my-canvas" width="500" height="1000"></canvas>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>