forked from swapnilsparsh/30DaysOfJavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 928 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 928 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reverse Memory Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="game-container">
<h1>Reverse Memory Game</h1>
<div id="controls">
<label for="grid-size">Select Grid Size:</label>
<select id="grid-size">
<option value="3">3x3</option>
<option value="4">4x4</option>
<option value="5">5x5</option>
<option value="6">6x6</option>
</select>
<button id="start-button">Start Game</button>
</div>
<div id="grid-container">
<!-- Grid squares will be dynamically generated here -->
</div>
<p id="status"></p>
</div>
<script src="script.js"></script>
</body>
</html>