-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Play an exciting and classic Tetris game built by Nazmul Hassan (NHB). Test your skills and set high scores!"
/>
<meta
name="keywords"
content="Tetris, Game, NHB, Nazmul, Hassan, Nazmul Hassan, Classic Game, Puzzle Game, Online Tetris"
/>
<meta name="author" content="Nazmul Hassan" />
<meta name="theme-color" content="#020617" />
<!-- Open Graph Meta Tags for Social Sharing -->
<meta property="og:title" content="Tetris by Nazmul Hassan (NHB)" />
<meta
property="og:description"
content="Play an exciting and classic Tetris game built by Nazmul Hassan (NHB). Challenge yourself to reach the highest score!"
/>
<meta property="og:image" content="/icon-512.png" />
<meta property="og:url" content="https://tetris-nhb.vercel.app" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Tetris by NHB" />
<meta
name="twitter:description"
content="Play an exciting and classic Tetris game built by Nazmul Hassan (NHB)."
/>
<meta name="twitter:image" content="/icon-192.png" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- Preload Fonts for Performance -->
<link
rel="preload"
href="/fonts/seven-segment.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<title>Tetris by NHB</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>