-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo.html
88 lines (83 loc) · 2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title class="emoji">👰🏻♂️ Static Template</title>
</head>
<body>
<style>
@font-face {
font-family: 'Apple Color Emoji';
src: local('Apple Color Emoji'), local('AppleColorEmoji'), local('apple-color-emoji');
src:
/*url('fonts/AppleColorEmoji.woff2') format('woff2'),*/
url('fonts/AppleColorEmoji.woff') format('woff'),
url('fonts/AppleColorEmoji.ttf') format('truetype'),
url('fonts/AppleColorEmoji.eot?'),
url('fonts/AppleColorEmoji.eot?#iefix') format('embedded-opentype'),
url('fonts/AppleColorEmoji.svg') format('svg');
font-weight: normal;
font-style: normal;
}
h1, p, span {
font-family: 'Apple Color Emoji';
}
p {
font-size: 40pt;
padding: 0;
margin: 0;
}
.block {
background: #f8f8f8;
padding: 10px 25px 30px;
margin: 15px 10px;
border-radius: 1.5rem;
}
</style>
<h1>Test</h1>
<p>Apple 👰🏻♂️ 🪮 🫵</p>
<br>
<h1>New</h1>
<div class="block">
<h3>Smileys</h3>
<p>🫨</p>
</div>
<div class="block">
<h3>Colorful hearts</h3>
<p>🩷 🩵 🩶</p>
</div>
<div class="block">
<h3>Nature</h3>
<p>🫏 🫎 🐦⬛ 🪿 🪽 🪼</p>
</div>
<div class="block">
<h3>Flowers and Eat</h3>
<p>🪻 🫛 🫚 </p>
</div>
<div class="block">
<h3>Objects</h3>
<p>🪭 🪮 🪈 🪇</p>
</div>
<div class="block">
<h3>Simbols</h3>
<p>🪯 🛜</p>
</div>
<div class="block">
<h3>Rightwards Pushing Hand</h3>
<p>🫸🏻 🫸🏼 🫸🏽 🫸🏾 🫸🏿</p>
</div>
<div class="block">
<h3>Leftwards Pushing Hand</h3>
<p>🫷 🫷🏻 🫷🏼 🫷🏽 🫷🏾 🫷🏿</p>
</div>
<!-- <style>
.man:after {
content: "🫵";
}
</style> -->
<!-- <p>Man <span class="man"></span></p> -->
</body>
</html>