-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (63 loc) · 2.73 KB
/
Copy pathindex.html
File metadata and controls
70 lines (63 loc) · 2.73 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
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/mastermind.png" />
<title>MasterMind — Color Code Breaker Game</title>
<meta
name="description"
content="MasterMind is a classic code-breaking puzzle game. Crack the secret color code using logic and deduction. Play free online — no sign-up required."
/>
<meta
name="keywords"
content="mastermind, mastermind game, code breaker, puzzle game, color code, logic game, board game, brain teaser, online game"
/>
<meta name="author" content="AmirReza Hammamian" />
<meta name="robots" content="index, follow" />
<!-- Theme -->
<meta name="theme-color" content="#282D34" />
<meta name="color-scheme" content="dark light" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="MasterMind — Color Code Breaker Game" />
<meta
property="og:description"
content="Crack the secret color code using logic and deduction. A classic puzzle game — play free online."
/>
<meta property="og:site_name" content="MasterMind" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="MasterMind — Color Code Breaker Game" />
<meta
name="twitter:description"
content="Crack the secret color code using logic and deduction. Play free online."
/>
<!-- PWA hints -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="MasterMind" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Rowdies&display=swap" rel="stylesheet" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "MasterMind",
"description": "A classic code-breaking puzzle game. Crack the secret color code using logic and deduction.",
"applicationCategory": "GameApplication",
"operatingSystem": "Any",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"author": { "@type": "Person", "name": "AmirReza Hammamian" }
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>