-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsamples-sans.html
More file actions
86 lines (86 loc) · 3.17 KB
/
Copy pathsamples-sans.html
File metadata and controls
86 lines (86 loc) · 3.17 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="style/latinmodern-sans-demi.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="style/latinmodern-sans.css" type="text/css" charset="utf-8" />
<style type="text/css">
body {
font-size: 16px;
}
div {
margin-bottom: 16px;
}
.sansbo {
font-family: 'Latin Modern Sans';
font-weight: bold;
font-style: oblique;
}
.sansb {
font-family: 'Latin Modern Sans';
font-weight: bold;
font-style: normal;
}
.sanso {
font-family: 'Latin Modern Sans';
font-weight: normal;
font-style: oblique;
}
.sans {
font-family: 'Latin Modern Sans';
font-weight: normal;
font-style: normal;
}
.sansdo {
font-family: 'Latin Modern Sans Demi Cond';
font-weight: normal;
font-style: oblique;
}
.sansd {
font-family: 'Latin Modern Sans Demi Cond';
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<h1>Latin Mono Sans</h1>
<h2>Regular</h2>
<div class="sans">
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz012345567890<br />
The Quick Brown Fox Jumps Over The Lazy Dog.<br />
tHE qUICK bROWN fOX jUMPS oVER tHE lAZY dOG.<br />
</div>
<h2>Bold</h2>
<div class="sansb">
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz012345567890<br />
The Quick Brown Fox Jumps Over The Lazy Dog.<br />
tHE qUICK bROWN fOX jUMPS oVER tHE lAZY dOG.<br />
</div>
<h2>Oblique</h2>
<div class="sanso">
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz012345567890<br />
The Quick Brown Fox Jumps Over The Lazy Dog.<br />
tHE qUICK bROWN fOX jUMPS oVER tHE lAZY dOG.<br />
</div>
<h2>Bold Oblique</h2>
<div class="sansbo">
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz012345567890<br />
The Quick Brown Fox Jumps Over The Lazy Dog.<br />
tHE qUICK bROWN fOX jUMPS oVER tHE lAZY dOG.<br />
</div>
<h2>Regular</h2>
<h1>Latin Mono Demi Cond</h1>
<div class="sansd">
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz012345567890<br />
The Quick Brown Fox Jumps Over The Lazy Dog.<br />
tHE qUICK bROWN fOX jUMPS oVER tHE lAZY dOG.<br />
</div>
<h2>Oblique</h2>
<div class="sansdo">
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz012345567890<br />
The Quick Brown Fox Jumps Over The Lazy Dog.<br />
tHE qUICK bROWN fOX jUMPS oVER tHE lAZY dOG.<br />
</div>
</body>
</html>