21 lines
379 B
HTML
21 lines
379 B
HTML
<!DOCTYPE HTML>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>emoji fallback to text font</title>
|
|
<style>
|
|
div {
|
|
font-size: 48pt;
|
|
}
|
|
#test {
|
|
font-family: 'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols';
|
|
font-size: 24pt;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div><span id=test>⌚︎⌛︎🌀︎🌁︎</div>
|
|
|
|
</body>
|
|
</html>
|