-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 2.69 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 2.69 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Blockout - 3D Tetris Game | Play Free Online</title>
<meta name="title" content="Blockout - 3D Tetris Game | Play Free Online" />
<meta name="description" content="Play Blockout, a challenging 3D Tetris game where you stack blocks in a three-dimensional well. Free online game with keyboard controls." />
<link rel="canonical" href="https://blockout.carlosmonti.com/" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Web App Manifest -->
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#00ffff" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://blockout.carlosmonti.com/" />
<meta property="og:title" content="Blockout - 3D Tetris Game | Play Free Online" />
<meta property="og:description" content="Play Blockout, a challenging 3D Tetris game where you stack blocks in a three-dimensional well. Free online game with keyboard controls." />
<meta property="og:image" content="https://blockout.carlosmonti.com/og-image.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://blockout.carlosmonti.com/" />
<meta name="twitter:title" content="Blockout - 3D Tetris Game | Play Free Online" />
<meta name="twitter:description" content="Play Blockout, a challenging 3D Tetris game where you stack blocks in a three-dimensional well. Free online game with keyboard controls." />
<meta name="twitter:image" content="https://blockout.carlosmonti.com/og-image.jpg" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoGame",
"name": "Blockout",
"description": "A challenging 3D Tetris game where you stack blocks in a three-dimensional well.",
"url": "https://blockout.carlosmonti.com/",
"image": "https://blockout.carlosmonti.com/og-image.jpg",
"genre": "Puzzle",
"gamePlatform": "Web Browser",
"playMode": "SinglePlayer",
"applicationCategory": "Game",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>