-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 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
<DOCTYPE! HTML>
<html>
<head>
<link rel="stylesheet" href="chess.css" type = "text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
</head>
<body class = "text-center">
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.5/svg.js"></script>
<main role="main" class="inner ">
<div class="container w-100 h-100 pt-3 mx-auto flex-column">
<div id="chessboard" class="simpleBorder mb-4">
<div id='draw'></div>
</div>
<div class = "mb-5" style = "text-align:center">
<button id = "reset" type = "button" style = "margin: auto" class = " btn btn-primary">Reset Chessboard</button>
<button id = "path" type = "button" style = "margin: auto" class = " btn btn-success">Toggle Path</button>
<button id = "knight" type = "button" style = "margin: auto" class = " btn btn-secondary">Toggle Knights & Numbers</button>
</div>
</div>
</div>
</main>
<script src="chess.js"></script>
</body>
</html>