forked from codethejason/checkers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.35 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
43
44
45
46
47
<!doctype html>
<html>
<head>
<title>HTML5 Checkers</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.png" type="image/x-icon">
<script src="script.js"></script>
</head>
<body>
<div class="column">
<div class="info">
<h1>Checkers</h1>
<hr>
<p>Made by codethejason for <a href="http://fossasia.org">FOSSASIA</a> 2015.</p>
</div>
<div class="stats">
<h2>Game Statistics</h2>
<div class="wrapper">
<div id="player1">
<h3>Player 1 (Top)</h3>
</div>
<div id="player2">
<h3>Player 2 (Bottom)</h3>
</div>
</div>
<div class="clearfix"></div>
<div class="turn"></div>
<button id="cleargame">Reset Game</button>
</div>
</div>
<div class="column">
<div id="board">
<div class="tiles"></div>
<div class="pieces">
<div class="player1pieces">
</div>
<div class="player2pieces">
</div>
</div>
</div>
</body>
</html>