-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 745 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 745 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Simple Solitare</title>
<meta name="" content="">
<style>
canvas {
border: 1px dashed gray;
}
</style>
</head>
<body>
<canvas id="board" width="1300px" height="600px"></canvas>
<script src="http://code.createjs.com/easeljs-0.7.1.min.js"></script>
<script src="js/resources.js"></script>
<script src="js/card.js"></script>
<script src="js/placeholder.js"></script>
<script src="js/deck.js"></script>
<script src="js/table.js"></script>
<script src="js/solitaire.js"></script>
<script type="text/javascript">
var path = Card.prototype.basePath = 'images/',
game = new Solitaire();
</script>
</body>
</html>