blob: 2628e4802419a4e820af90dc3178b30279b5fcdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<style>
span {
/* On Windows, we need to use the TwEmoji Mozilla font in preference to
Segoe UI Emoji, as the latter doesn't support the Regional-Indicator
flag ligatures. */
font-family: TwEmoji Mozilla, sans-serif;
font-size: 36px;
font-kerning: none;
}
#ref {
text-transform: uppercase;
}
</style>
<body>
<p>The two lines should match:
<p><span id="ref">S 🇸🇪 v e</span>
<p><span id="ref">S 🇸🇪 v e</span>
</body>
|