-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (90 loc) · 3.71 KB
/
index.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
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
<meta charset="utf-8">
<title>Types of Type</title>
<meta charset="UTF-8">
<meta name="description" content="A Guide to Typography with Character" />
<meta name="keywords" content="types of type, typography, korean, 타이포그래픽, 타이포그라피, 타이포그래피, 타이포, 한글, character, graphic design, designer, amanda lui"
/>
<meta name="author" content="Amanda Lui" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="cache-control" content="max-age=3600" />
<meta name="viewport" content="initial-scale=1">
<!-- Essential META Tags -->
<meta property="og:title" content="Types of Type">
<meta property="og:description" content="A Guide to Typography with Character.">
<meta property="og:image" content="/static/web-preview.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:url" content="http://typesoftype.com">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@amandalui">
<meta name="twitter:creator" content="@amandalui">
<!-- Non-Essential, But Recommended -->
<meta property="og:site_name" content="Types of Type">
<meta name="twitter:image:alt" content="Types of Type | A Guide to Typography with Character">
<meta name="twitter:image:src" content="http://typesoftype.com/static/web-preview.png">
<meta name="twitter:image:width" content="1200">
<meta name="twitter:image:height" content="630">
<!--[if IE]><link rel="shortcut icon" href="/static/favicon.ico"><![endif]-->
<link rel="icon" href="/static/favicon.png">
<!--Google Android-->
<link rel="icon" sizes="128x128" href="/static/android-icon.png">
<link rel="icon" sizes="192x192" href="/static/android-icon-hd.png">
<!--Apple iOS-->
<link rel="apple-touch-icon" href="/static/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="152x152" href="/static/apple-touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="167x167" href="/static/assets/apple-touch-icon-ipad-retina.png">
<link href="https://fonts.googleapis.com/css?family=Bitter|Work+Sans:300,400,500,600,700" rel="stylesheet">
<script src="https://use.typekit.net/mdt5gam.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-43945915-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-43945915-2');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P0CY018M0R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P0CY018M0R');
</script>
<style>
.hidden {
/* transistion */
transition: opacity, 0.5s;
}
.hidden.active {
opacity: 0;
}
.hidden.inactive {
opacity: 1;
}
</style>
<script>
try {
Typekit.load({
async: true,
active() {
document.querySelector('body').classList = "hidden inactive"
},
inactive() {
document.querySelector('body').classList = "hidden inactive"
}
})
} catch (e) {
}
</script>
<link rel="stylesheet" href="/static/css/style.css?v2.0"></link>
</head>
<body class="hidden active">
<div id="app"></div>
</body>
</html>