-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2.33 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
50
51
52
53
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Matching Game</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="modal fade" id="winnerModal" tabindex="-1" role="dialog" aria-labelledby="winnerModal-label">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="winnerModal-label">We Have a Winner!</h4>
</div>
<div class="modal-body">
<p id="winnerText"></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default playAgain stageOne" data-dismiss="modal">Go Again!</button>
<button type="button" class="btn btn-default playAgain stageTwo hidden" data-dismiss="modal">Go Again!</button>
<button type="button" class="btn btn-default playAgain stageThree hidden" data-dismiss="modal">Go Again!</button>
</div>
</div>
</div>
</div>
<div class="container">
<h1>Memory Game</h1>
<section class="score-panel">
<span class="matched">0</span> Poin
<div class="restart">
<i class="fa fa-repeat"></i>
</div>
</section>
<ul class="deck deck-4"></ul>
<ul class="deck deck-8 hidden"></ul>
<ul class="deck deck-12 hidden"></ul>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.min.js'></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script src="js/app.js"></script>
</body>
</html>