-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="LOGO" href="./LOGO.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Play the Classic Jigsaw Puzzle Game. Upload any image, choose your difficulty, and enjoy an interactive puzzle-solving experience."
/>
<meta
name="keywords"
content="game, puzzle, jigsaw puzzle, puzzle game, jigsaw puzzle game, new game, mind game"
/>
<title>Jigsaw Puzzle</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id=forPuzzle></div>
<ul id="menu">
<li>☰</li>
<li>Follow this ⬇️</li>
<li>Upload image 📤</li>
<li>shape: <select id="shape">
<option value="1" selected>classic</option>
<option value="2">triangle</option>
<option value="3">round</option>
<option value="4">straight</option>
</select></li>
<li>12 pieces 🧩</li>
<li>25 pieces 🧩</li>
<li>50 pieces 🧩</li>
<li>100 pieces 🧩</li>
<li>200 pieces 🧩</li>
</ul>
<script src="script.js"></script>
</body>
</html>