-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
47 lines (39 loc) · 951 Bytes
/
preview.html
File metadata and controls
47 lines (39 loc) · 951 Bytes
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
<html>
<body>
<style>
@font-face {
font-family: 'sundae-rounded';
src: url('sundae-rounded.ttf') format('truetype');
}
#preview {
display: inline-block;
text-align: center;
font-family: 'sundae-rounded';
letter-spacing: 0.17em;
word-spacing: 0.7em;
text-transform: uppercase;
}
h1 {
background-color: #eae8d0;
color: #000;
padding: 2em;
margin: 0;
}
p {
background-color: #ff695b;
color: #000;
padding: 2em;
margin: 0;
}
p:not(p:first-of-type) {
padding-top: 0;
}
</style>
<div id="preview">
<h1>sundae rounded</h1>
<p>abcdefghiklmnopqrstuvwxyz</p>
<p>1234567890</p>
<p>!@#$%^&*()</p>
</div>
</body>
</html>