-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (119 loc) · 5.05 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Puzzle Game</title>
<link rel="apple-touch-icon" sizes="180x180" href="icon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
<link rel="manifest" href="manifest.json" />
<meta name="description"
content="PuzzleGame game created by PtPrashantTripathi. Test your puzzle-solving skills with this fun game!" />
<meta name="keywords" content="PuzzleGame, puzzle game, PtPrashantTripathi, logic game, brain teaser" />
<meta name="author" content="PtPrashantTripathi" />
<meta property="og:title" content="PuzzleGame" />
<meta property="og:description"
content="PuzzleGame game created by PtPrashantTripathi. Test your puzzle-solving skills with this fun game!" />
<meta property="og:image" content="icon/logo.png" />
<meta property="og:url" content="https://ptprashanttripathi.github.io/PuzzleGame/" />
<meta property="og:type" content="website" />
<meta name="twitter:title" content="PuzzleGame" />
<meta name="twitter:description"
content="PuzzleGame game created by PtPrashantTripathi. Test your puzzle-solving skills with this fun game!" />
<meta name="twitter:image" content="icon/logo.png" />
<meta name="twitter:card" content="https://ptprashanttripathi.github.io/PuzzleGame/" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C4NJD8J3MD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-C4NJD8J3MD");
</script>
</head>
<body>
<div class="container">
<div class="game-header">
<div class="title">
Puzzle <span id="header">Game</span>
</div>
<div class="score">
<div>
Time: <span id="clock">0s</span>
</div>
<div>
Moves: <span id="moves">0</span>
</div>
</div>
</div>
<div class="grid" id="puzzle-board">
<div class="cell">
<div class="number-cell number-cell-correct" id="1">1</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="2">2</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="3">3</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="4">4</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="5">5</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="6">6</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="7">7</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="8">8</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="9">9</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="10">10</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="11">11</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="12">12</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="13">13</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="14">14</div>
</div>
<div class="cell">
<div class="number-cell number-cell-correct" id="15">15</div>
</div>
<div class="cell">
<div class="number-cell number-cell-empty" id="0">0</div>
</div>
</div>
<div class="game-mode">
<button id="easyMode">Easy</button>
<button id="normalMode">Normal</button>
<button id="hardMode">Hard</button>
</div>
<div id="model"> </div>
<footer>
Made with <span style="color: red">❤</span>
by
<a href="https://github.com/ptprashanttripathi/" target="_blank">Pt. Prashant Tripathi</a>
<br />
This project is open source, visit
<a href="https://github.com/ptprashanttripathi/PuzzleGame" target="_blank">the repo.</a>
</footer>
</div>
<script type="module" src="js/script.js"></script>
</body>
</html>