forked from einaregilsson/cards.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
27 lines (25 loc) · 798 Bytes
/
example.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
<!DOCTYPE html>
<html>
<head>
<title>cards.js - Example</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="example.css"/>
<script src="jquery-1.7.min.js"></script>
</head>
<body>
<h1>Cards.js - Example</h1>
<img class="preload" src="img/cards.png"/>
<div id="card-table">
<button id="deal">DEAL</button>
</div>
<footer>
cards.js was created by <a href="http://einaregilsson.com">Einar Egilsson</a> and is licensed
under the MIT license. The card images were created by <a href="http://nicubunu.ro">Nicu Buculei</a> and are
in the public domain.
</footer>
<!-- load this at the bottom so the #card-table element exists -->
<script src="deckType.js"></script>
<script src="cards.js"></script>
<script src="example.js"></script>
</body>
</html>