-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href='https://fonts.googleapis.com/css?family=Chelsea+Market' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="chessboardjs/css/chessboard-0.3.0.min.css" type="text/css">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<section>
<span id="o-timer">10:00</span>
<span id="p-timer">10:00</span>
<section class="board">
<button class="action-btn" id="undoBtn">Undo</button>
<button class="action-btn" id="switchBtn">Switch Colors</button>
<div id="board" style="width: 400px"></div>
<button class="reset-btn" id="resetBtn">Reset</button>
</section>
</section>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="lib/chess.min.js"></script>
<script type="text/javascript" src="chessboardjs/js/chessboard-0.3.0.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>