24 lines
481 B
HTML
24 lines
481 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>SVG Match Game</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="background"></div>
|
|
<header>
|
|
<h1>Ultimatch Memory Match</h1>
|
|
<div class="stats">
|
|
<span id="moves">Moves: 0</span>
|
|
<span id="timer">Time: 0s</span>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="board" class="board"></section>
|
|
</main>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |