index.html

This commit is contained in:
5803025031 2025-11-24 02:17:42 -05:00
parent fb515ba6d6
commit 6ced9fb6ae

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Card Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Memory Card Game</h1>
<div id="game"></div>
<div id="status">
<p>Moves: <span id="moves">0</span></p>
<p>Score: <span id="score">0</span></p>
</div>
<script src="script.js"></script>
</body>
</html>