-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (96 loc) · 3.81 KB
/
index.html
File metadata and controls
103 lines (96 loc) · 3.81 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<meta name="theme-color" content="#8ace00" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
<meta
http-equiv="Permissions-Policy"
content="camera=(), microphone=(), geolocation=(), interest-cohort=()"
/>
<!-- Primary Meta Tags -->
<title>Fourtiles</title>
<meta name="title" content="Fourtiles" />
<meta name="description" content="A fun word-finding game." />
<meta name="author" content="Tim Morgan and Wenting" />
<link rel="canonical" href="https://fourtiles.github.io/" />
<!-- Apple Web App -->
<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="Fourtiles" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://fourtiles.github.io/" />
<meta property="og:title" content="Fourtiles" />
<meta property="og:description" content="A fun word-finding game." />
<meta property="og:image" content="/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:type" content="image/png" />
<meta
property="og:image:alt"
content="Fourtiles logo and wordmark on a lime green background"
/>
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://fourtiles.github.io/" />
<meta property="twitter:title" content="Fourtiles" />
<meta property="twitter:description" content="A fun word-finding game." />
<meta name="twitter:image" content="/og-image.png" />
<meta
property="twitter:image:alt"
content="Fourtiles logo and wordmark on a lime green background"
/>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon-iphone.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-iphone-retina.png" />
<link rel="apple-touch-icon" sizes="167x167" href="/apple-touch-icon-ipad-retina.png" />
<link rel="mask-icon" href="/pinned-tab.svg" color="#8ace00" />
<link rel="manifest" href="/site.webmanifest" />
<!-- JSON-LD Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Fourtiles",
"description": "A fun word-finding game.",
"url": "https://fourtiles.github.io/",
"applicationCategory": "GameApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript and a modern web browser.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": [
{
"@type": "Person",
"name": "Tim Morgan",
"url": "https://github.com/RISCfuture"
},
{
"@type": "Person",
"name": "Wenting"
}
]
}
</script>
</head>
<body>
<div id="app"></div>
<noscript>
<div style="padding: 2em; font-family: arial, sans-serif; text-align: center">
<h1>Fourtiles requires JavaScript</h1>
<p>
This word-finding game needs JavaScript to run. Please enable JavaScript in your browser
and reload the page.
</p>
</div>
</noscript>
<script type="module" src="/src/main.ts"></script>
</body>
</html>