forked from md-ash-dot/december-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday7.html
More file actions
26 lines (26 loc) · 1.09 KB
/
day7.html
File metadata and controls
26 lines (26 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Google fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap" rel="stylesheet">
<title>Day 7</title>
<link rel="stylesheet" href="assets/css/day7.css">
<script src="assets/javascript/day7.js"></script>
</head>
<body>
<a href="index.html" class="homebutton">Home</a>
<img id="title" src="assets/puzzle-images/elf-title.png" alt="elf-title">
<div id="board"></div>
<h1>Turns: <span id="turns">0</span></h1>
<button id="restartButton">Restart Game</button>
<div id="message" style="display: none;">Congratulations! You solved the puzzle in <span id="finalMoves">0</span> moves!</div>
<section id="instructions">
<h2>How to Play</h2>
<p>Slide tiles into the empty space to solve the puzzle.</p>
</section>
</body>
</html>