-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (26 loc) · 991 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (26 loc) · 991 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Memory Match Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="game.js"></script>
</head>
<body>
<h1>Memory Match Game</h1>
<div class="gridGeneratorWrapper">
<input type="number" class="col" />
<input type="number" class="row" />
<button type="button" class="gridGenerator" onclick="generateLetters();">Generate Grid</button> <br />
<p class="oddGridError" style="color:red;display:none;">This creates an odd grid. Please enter numbers for even grid.
<span style="color:green;">For example, 4*4=16</span>
</p>
</div>
<div>Number of Clicks = <span class="clickCount"></span></div>
<div>Number of Matches = <span class="matchCount"></span></div>
<div id="container">
<div class="gameWrapper"></div>
</div>
<div class="gridGen"></div>
</body>
</html>