-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (35 loc) Β· 1.59 KB
/
index.html
File metadata and controls
42 lines (35 loc) Β· 1.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Memory Game β Test Your Brain</title>
<!-- β
SEO Meta Tags -->
<meta name="description" content="Play the Memory Game β Test your brain with fun emoji matching! Track your time and attempts, and challenge yourself to improve." />
<meta name="keywords" content="Memory Game, Brain Test, Emoji Matching, Puzzle Game, Bogglo, All Bayjid, GitHub Game, HTML Game" />
<meta name="author" content="All Bayjid (Bogglo)" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<!-- π Favicon and Styles -->
<link rel="icon" type="image/png" href="image/favicon.png" />
<link rel="stylesheet" href="style/main.css" />
</head>
<body>
<h1>Memory Game<span style="color:#28a745;"></span></h1>
<div class="stats">
β±οΈ Time: <span id="timeCounter">0</span> sec |
π§ Attempts: <span id="attemptCounter">0</span>
<button id="resetGame">π Reset</button>
</div>
<div class="game-board" id="gameBoard"></div>
<div id="winMessage">π You win! All cards matched!</div>
<button id="playAgain">π Play Again</button>
<!-- β€οΈ Love Calculator Button -->
<div style="margin-top: 20px;">
<a href="https://bogglo.github.io" target="_blank" id="loveCalc" style="display:inline-block; padding:10px 20px; background-color:#ff4d6d; color:white; text-decoration:none; border-radius:5px; font-weight:bold;">
β€οΈ Calculate Love
</a>
</div>
<!-- π§© Game Script -->
<script src="script/game.js"></script>
</body>
</html>