forked from iaolo/iA-Fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-jsdelivr.html
85 lines (76 loc) · 2.41 KB
/
index-jsdelivr.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iA Writer Fonts</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codex-src/iA-Fonts@master/iA%20Writer%20Mono/Webfonts/index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codex-src/iA-Fonts@master/iA%20Writer%20Duo/Webfonts/index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codex-src/iA-Fonts@master/iA%20Writer%20Quattro/Webfonts/index.css">
<style>
#root {
margin: 0 auto;
width: 800px;
}
#mono {
font: 16px/1.5 "iA Writer Mono", monospace;
}
#duo {
font: 16px/1.5 "iA Writer Duo", monospace;
}
#quattro {
font: 16px/1.5 "iA Writer Quattro", monospace;
}
.regular {
font-weight: normal;
}
.bold {
font-weight: bold;
}
.normal {
font-style: normal;
}
.italic {
font-style: italic;
}
</style>
</head>
<body>
<div id="root">
<div id="mono">
<h1>iA Writer Mono for Web</h1>
<p>
Hell just froze over. After seven years of offering no font options to write, iA Writer now comes with a choice. Next to
the monospace Nitti you’ll find a brand new duospace font.
</p>
<p class="regular normal">Regular normal</p>
<p class="regular italic">Regular italic</p>
<p class="bold normal">Bold normal</p>
<p class="bold italic">Bold italic</p>
</div>
<hr>
<div id="duo">
<h1>iA Writer Duo for Web</h1>
<p>
Hell just froze over. After seven years of offering no font options to write, iA Writer now comes with a choice. Next to
the monospace Nitti you’ll find a brand new duospace font.
</p>
<p class="regular normal">Regular normal</p>
<p class="regular italic">Regular italic</p>
<p class="bold normal">Bold normal</p>
<p class="bold italic">Bold italic</p>
</div>
<hr>
<div id="quattro">
<h1>iA Writer Quattro for Web</h1>
<p>
Hell just froze over. After seven years of offering no font options to write, iA Writer now comes with a choice. Next to
the monospace Nitti you’ll find a brand new duospace font.
</p>
<p class="regular normal">Regular normal</p>
<p class="regular italic">Regular italic</p>
<p class="bold normal">Bold normal</p>
<p class="bold italic">Bold italic</p>
</div>
</div>
</body>
</html>