mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
568 B
HTML
19 lines
568 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
@font-face { font-family: foo; src: url("resources/two_cats.ttf"); }
|
|
body { font-family: foo, sans-serif; font-size: 24px; }
|
|
td { padding: 2px 10px }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<!-- the Plane-14 variation selector U+E0100 should change U+1F431 to the "heart shaped eyes" cat face -->
|
|
<tr><td>🐱</td><td>ネコ</td><td>cat face</td></tr>
|
|
<tr><td>🐱󠄀</td><td>目がハート(ネコ)</td><td>smiling cat face with heart shaped eyes</td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|