-
Notifications
You must be signed in to change notification settings - Fork 0
/
memo.html
70 lines (59 loc) · 2.09 KB
/
memo.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
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Memory Game</title>
<link rel="icon" href="luck.jpeg" type="image/jpeg" >
<link rel="stylesheet" type="text/css" href="memo.css">
</head>
<body>
<div id="start" class="active">Start.........</div>
<div class=" spinner spinner-1" id="load"></div>
<header id="header" class="head">
<span class="nav"><table>
<tr><p><h1>Memory Game</h1></p></tr>
<tr> <p class="rules">
Rules:<br> User can select two boxes at maximum. If two boxes of <br>
different alphabets are selected then nothing happens but if the third box clicked matches with the second one it opens up <br>
(They both get hidden again). If both the boxes have same alphabet then you earn a match <br>
So enjoy!!</p></tr>
<tr><h2 id="play" class="active" >Play!!</h2></tr>
<tr><h2 id="rules" class="active"> Rules</h2></tr>
<tr>
<td><div class="clock " id="score"><br>Score</div></td>
<td><div class="clock " id="match"><br>Matches</div></td></tr>
<tr><p>
<footer><form >
<button class="button danger active" id="End" >End Game</button>
</form>
</footer>
</p> </tr>
</table>
</span>
</header><!-- /header -->
<div>
<div class="container"><br><br><br><br><br><br>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
<div class="card unmatched"></div>
</div>
</div>
<script>window.jQuery || document.write('<script src="js/jquery-2.1.4.js"><\/script>');</script>
<script src="js/new.js"></script>
</body>
</html>