-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.html
108 lines (93 loc) · 1.95 KB
/
test.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
100
101
102
103
104
105
106
107
108
<!doctype html>
<html>
<head>
<title>test page</title>
<style>
html, body {
background: #AACCFF;
color: #000000;
margin: 0;
}
@font-face {
font-family: 'Omelette Large';
src: url('assets/ttf/om_large_plain.ttf');
}
@font-face {
font-family: 'Omelette Tall';
src: url('assets/ttf/om_tall_plain.ttf');
}
@font-face {
font-family: 'Omelette Thick';
src: url('assets/ttf/om_thick_plain.ttf');
}
@font-face {
font-family: 'Omelette Thin';
src: url('assets/ttf/om_thin_plain.ttf');
}
@font-face {
font-family: 'Omelette Small';
src: url('assets/ttf/om_small_plain.ttf');
}
@font-face {
font-family: 'Omelette Tiny';
src: url('assets/ttf/om_tiny_plain.ttf');
}
h1 {
font-family: 'Omelette Large';
font-size: 48pt;
margin: 8px 8px;
}
h2 {
font-family: 'Omelette Tall';
font-size: 48pt;
margin: 8px 8px;
}
h3 {
font-family: 'Omelette Thick';
font-size: 24pt;
margin: 8px 8px;
}
h4 {
font-family: 'Omelette Thin';
font-size: 24pt;
margin: 8px 8px;
}
h5 {
font-family: 'Omelette Small';
font-size: 12pt;
margin: 8px 8px;
}
h6 {
font-family: 'Omelette Tiny';
font-size: 6pt;
margin: 8px 8px;
}
.shadow h1, .shadow h2, .shadow h3, .shadow h4 {
color: #FFFFFF;
text-shadow: 0px 3px 0px #000000;
}
.shadow h5, .shadow h6 {
color: #FFFFFF;
text-shadow: 0px 1px 0px #000000;
}
</style>
</head>
<body>
<div>
<h1>This is a test! Large.</h1>
<h2>This is a test! Tall.</h2>
<h3>This is a test! Thick.</h3>
<h4>This is a test! Thin.</h4>
<h5>This is a test! Small.</h5>
<h6>This is a test! Tiny.</h6>
</div>
<div class='shadow'>
<h1>This is a test! Large.</h1>
<h2>This is a test! Tall.</h2>
<h3>This is a test! Thick.</h3>
<h4>This is a test! Thin.</h4>
<h5>This is a test! Small.</h5>
<h6>This is a test! Tiny.</h6>
</div>
</body>
</html>