-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemoryGame.html
More file actions
23 lines (23 loc) · 945 Bytes
/
Copy pathmemoryGame.html
File metadata and controls
23 lines (23 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A card-matching memory game with tech logos. Flip cards to find all 6 matching pairs.">
<title>Memory Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Memory Game</h1>
<p class="score">Score: <span id="result" role="status" aria-live="polite">0</span></p>
<div id="grid" class="grid" role="group" aria-label="Memory cards — flip to find matching pairs"></div>
<div class="controls">
<button id="restart" type="button" aria-label="Restart game">Restart</button>
<a href="../index.html">Back to Games</a>
</div>
<div id="announcer" aria-live="assertive" class="sr-only"></div>
</main>
<script src="app.js"></script>
</body>
</html>