-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.07 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
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matching Game</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<!-- https://github.com/daneden/animate.css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
<!-- jQuery for easytimer only -->
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<!-- Other 3rd Party JS Libraries -->
<script src="js/easytimer.min.js"></script> <!-- Source: https://github.com/albert-gonzalez/easytimer.js -->
<link href="https://fonts.googleapis.com/css?family=Tenor+Sans" rel="stylesheet">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<!-- Source: https://www.youtube.com/watch?v=6ophW7Ask_0 -->
<div id='simpleModal' class='modal'>
<div class='modal-content'>
<header>
<h2 class='animated slideInDown'>You won!</h2>
</header>
<p id='result'></p>
<button id='closeBtn' type='button' class="btn btn-success">Restart</button>
</div>
</div>
<div class="container" id='modalHide'>
<header>
<h1>Matching Game</h1>
</header>
<section class="score-panel">
<ul class="stars">
</ul>
<span class="moves"></span> Moves
<div class="restart">
<i class="fa fa-repeat"></i>
</div>
</section>
<div class="timer">
<span id="timer" class="text">00:00:00</span>
</div>
<ul class="deck"></ul>
</div>
<!-- Testing only
<button id='modalBtn' class='button'>Click Here</button>
-->
<script src="js/app.js"></script>
</body>
</html>