2025-11-24 02:17:42 -05:00

18 lines
432 B
HTML

<!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>