-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomparison.html
More file actions
116 lines (107 loc) · 2.34 KB
/
Copy pathcomparison.html
File metadata and controls
116 lines (107 loc) · 2.34 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
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NHS.UK typeface comparison</title>
<!-- Myriad -->
<script src="https://use.typekit.net/wmp0prk.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<!-- Frutiger -->
<link rel="stylesheet" href="http://fast.fonts.net/cssapi/50c9c92a-7fe0-4c8b-bd64-c7d3d2fafc87.css">
<!-- Lato -->
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<!-- New Rail -->
<link href='assets/stylesheets/new-rail.css' rel='stylesheet' type='text/css'>
<!-- FS Me -->
<link href='assets/stylesheets/fs-me.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/stylesheets/main.css">
</head>
<body>
<div class="test frutiger">
<div>Frutiger</div>
<div>
ABCDEFGHIJKLMNOPQRSTUVWXYZ
</div>
<div>
abcdefghijklmnopqrstuvwxyz
</div>
<div>
0123456789
</div>
<div>
iIl1<br>
rn m<br>
0oO
</div>
</div>
<div class="test lato">
<div>Lato</div>
<div>
ABCDEFGHIJKLMNOPQRSTUVWXYZ
</div>
<div>
abcdefghijklmnopqrstuvwxyz
</div>
<div>
0123456789
</div>
<div>
iIl1<br>
rn m<br>
0oO
</div>
</div>
<div class="test fs-me">
<div>FS Me</div>
<div>
ABCDEFGHIJKLMNOPQRSTUVWXYZ
</div>
<div>
abcdefghijklmnopqrstuvwxyz
</div>
<div>
0123456789
</div>
<div>
iIl1<br>
rn m<br>
0oO
</div>
</div>
<div class="test myriad">
<div>Myriad</div>
<div>
ABCDEFGHIJKLMNOPQRSTUVWXYZ
</div>
<div>
abcdefghijklmnopqrstuvwxyz
</div>
<div>
0123456789
</div>
<div>
iIl1<br>
rn m<br>
0oO
</div>
</div>
<div class="test new-rail">
<div>New Rail</div>
<div>
ABCDEFGHIJKLMNOPQRSTUVWXYZ
</div>
<div>
abcdefghijklmnopqrstuvwxyz
</div>
<div>
0123456789
</div>
<div>
iIl1<br>
rn m<br>
0oO
</div>
</div>
</body>
</html>