forked from lbj96347/JSMatchismo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.54 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
48
49
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Matchismo</title>
<link rel="stylesheet" href="css/animate-custom.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="wrapper">
<div class="stats">
<div class="count"></div>
<div class="score"></div>
</div>
<div class="deck">
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
<button class="card"></button>
</div>
</div>
<div class="footer">
<p>A pure JavaScript implementation of Matchismo Playing Card Game of Stanford University CS193p lecture (Winter 2013). <a href="https://github.com/dexteryy/JSMatchismo" target="_blank">Source code</a></p>
<p>Written by <a href="https://github.com/dexteryy/" target="_blank">Dexter.Yy</a></p>
</div>
<script src="js/matchismo/model/card.js"></script>
<script src="js/matchismo/model/deck.js"></script>
<script src="js/matchismo/model/playingCard.js"></script>
<script src="js/matchismo/model/playingCardDeck.js"></script>
<script src="js/matchismo/model/cardMatchingGame.js"></script>
<script src="js/matchismo/view.js"></script>
<script src="js/matchismo/app.js"></script>
<script>
app.init();
</script>
</body>
</html>