forked from raghuvarma/ludo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 865 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ludo</title>
<link rel="stylesheet" href="css/normalize.css" media="all">
<link rel="stylesheet" href="css/style.css" media="all">
</head>
<body>
<div class="shadow"></div>
<div id="content">
<div id="board"></div>
<div id="sidebar">
<div class="arrow"></div>
<ul id="players-list"></ul>
</div>
</div>
<script src="lib/zepto.js"></script>
<script src="utils/log.js"></script>
<script src="utils/sfx.js"></script>
<script src="js/player.js"></script>
<script src="js/board.js"></script>
<script src="js/field.js"></script>
<script src="js/pawn.js"></script>
<script src="js/base.js"></script>
<script src="js/dice.js"></script>
<script src="js/game.js"></script>
</body>
</html>