forked from hfg-gmuend/openmoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
45 lines (41 loc) · 1.01 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OpenMoji Font Test</title>
<link rel="stylesheet" type="text/css" href="openmoji.css">
<style>
body {
background: #fff;
margin: 0px;
padding: 0px;
font-family: sans-serif;
}
.openmoji-color {
font-family: OpenMojiColor, sans-serif;
}
.openmoji-black {
font-family: OpenMojiBlack, sans-serif;
}
#content {
padding: 10px;
}
textarea {
background: #f5f5f5;
padding: 0.2em;
font-size: 4em;
line-height: 1.35em;
width: 100%;
height: 5em;
}
</style>
</head>
<body>
<div id="content">
<textarea class="openmoji-color">ABC 👨💻 🥶 XYZ 💻 👨 🧟 Lorem  ipsum 💯
</textarea>
<textarea class="openmoji-black">ABC 👨💻 🥶 XYZ 💻 👨 🧟 Lorem  ipsum 💯
</textarea>
</div>
</body>
</html>