зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
455 B
HTML
19 строки
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>
|