-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.39 KB
/
index.html
File metadata and controls
33 lines (29 loc) · 1.39 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
<!doctype html>
<html lang='en' class='scroll-smooth'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name='description' content='A PWA 15 Puzzle game'>
<meta name='keywords' content='15 puzzle, web games, puzzle'>
<meta name='author' content='Eldar Pashazade'>
<meta name='theme-color' content='#38bdf8'>
<meta property='og:title' content='Fifteen Puzzle'>
<meta property='og:description' content='A PWA 15 Puzzle game'>
<meta content='https://eldarlrd.is-a.dev/fifteen-puzzle' property='og:url'>
<meta property='og:image'
content='https://repository-images.githubusercontent.com/641330748/16f92a9e-ed77-47ef-a025-c177936ecf29'>
<link crossorigin='anonymous' href='https://kit.fontawesome.com'
rel='preconnect' type='text/xml'>
<link rel='manifest' type='application/manifest+json' href='site.webmanifest'>
<link rel='icon' type='image/png' sizes='512x512' href='favicon.png'>
<script crossorigin='anonymous' defer
src='https://kit.fontawesome.com/0db9b2eb32.js' type='text/javascript'></script>
<title>Fifteen Puzzle</title>
</head>
<body>
<div
class="font-righteous flex min-h-[100dvh] flex-col items-center justify-between gap-12 bg-surface-400 py-2 accent-tile-600"
id='app'></div>
<script type='module' src='src/main.ts'></script>
</body>
</html>