-
Notifications
You must be signed in to change notification settings - Fork 2
/
webapp.html
104 lines (95 loc) · 3.97 KB
/
webapp.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
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
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.svg" />
<link rel="mask-icon" href="favicon.svg" color="#000000" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<!-- Primary Meta Tags -->
<title>Calligro - Bitmap Font Generator</title>
<meta name="title" content="Calligro - Bitmap Font Generator" />
<meta
name="description"
content="Online open source bitmap font generator compatible with most game engines and frameworks."
/>
<meta
name="keywords"
content="bitmap font, font, bmfont, generator, tool, godot, heaps.io, phaser, libgdx, haxeflixel"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://calligro.ideasalmanac.com/" />
<meta property="og:title" content="Calligro - Bitmap Font Generator" />
<meta
property="og:description"
content="Online open source bitmap font generator compatible with most game engines and frameworks."
/>
<meta property="og:image" content="https://calligro.ideasalmanac.com/OgImage.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://calligro.ideasalmanac.com/" />
<meta property="twitter:title" content="Calligro - Bitmap Font Generator" />
<meta
property="twitter:description"
content="Online open source bitmap font generator compatible with most game engines and frameworks."
/>
<meta property="twitter:image" content="https://calligro.ideasalmanac.com/OgImage.png" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<link
rel="stylesheet preload"
as="style"
href="https://use.fontawesome.com/releases/v5.12.1/css/all.css"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preload" as="font" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;800&display=swap" crossorigin="anonymous"/>
<link rel="preload" as="font" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" crossorigin="anonymous" />
<link rel="preload" as="image" href="logo.svg" />
<link rel="preload" as="image" href="cookie.svg" />
<link rel="preload" as="document" href="https://itch.io/embed/946259" crossorigin="anonymous" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("consent", "default", {
ad_storage: "denied",
analytics_storage: "denied",
wait_for_update: 500,
});
</script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-LYVXVB1GZS"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-LYVXVB1GZS", { anonymize_ip: true });
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "SoftwareApplication",
"name": "Calligro",
"applicationCategory": "Game Development",
"applicationSubCategory": "Bitmap Font Generator",
"screenshot": "https://calligro.ideasalmanac.com/OgImage.png",
"about": "Online open source bitmap font generator compatible with most game engines and frameworks.",
"keywords": "bitmap font,font,bmfont,generator,tool,godot,heaps.io,phaser,libgdx,haxeflixel",
"url": "https://calligro.ideasalmanac.com/"
}
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="src/index.tsx"></script>
</body>
</html>