mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
455 B
HTML
19 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
/* font with the SVG glyph for the cat face U+1f431 remapped to
|
|
the BMP smiling-face character U+263a */
|
|
@font-face { font-family: foo; src: url("resources/cat_face-bmp.ttf"); }
|
|
body { font-family: foo, sans-serif; font-size: 24px; }
|
|
td { padding: 2px 10px }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr><td>☺</td><td>ネコ</td><td>cat face</td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|