-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.36 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel='icon' href='images/favicon.ico'>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div id="message-board" class="text-box">
</div>
<div class="buttons">
<div id="hint" class="hint button">Hint</div>
</div>
<div class="player-indicator player-indicator-white"></div>
<div id="column-labels" class="labels">
<div class="square">
<!-- One empty square at the corner of the board labels -->
</div>
</div>
<div id="board" class="board">
</div>
<div class="player-indicator player-indicator-black hidden"></div>
<div>
<form id="notation" action="" class="text-box">
<input type="text" placeholder="notation e.g. Ne6">
</form>
</div>
</div>
<script src="Board.js" charset="utf-8"></script>
<script src="Square.js" charset="utf-8"></script>
<script src="Piece.js" charset="utf-8"></script>
<script src="Game.js" charset="utf-8"></script>
<script src="Dom.js" charset="utf-8"></script>
<script src="app.js" charset="utf-8"></script>
</body>
</html>