-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 2.2 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 2.2 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
<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T8GEX2GPTP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-T8GEX2GPTP", { app_name: "pen" });
</script>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#000000" />
<meta
name="keywords"
content="calligraphy, penmanship, practice, lines, guidelines, sheet, template, print, printer, free, cursive"
/>
<meta property="og:title" content="Penmanship Practice Sheets" />
<meta
property="og:description"
content="Create custom, printable penmanship and calligraphy practice sheets. Design your own or use standard layouts for Copperplate, Spencerian, and more."
/>
<meta property="og:url" content="https://kylev.github.io/pen/" />
<meta property="og:image" content="https://kylev.github.io/pen/og-image.png" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="en_GB" />
<meta property="og:locale:alternate" content="es_LA" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@kylev" />
<!-- TODO Make manifest pretty. -->
<link rel="manifest" href="manifest.json" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<title>Calligraphy Practice Sheets</title>
</head>
<body>
<noscript>JavaScript is required.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>