OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <style type="text/css"> |
| 4 @font-face { |
| 5 font-family: FruityGirl; |
| 6 src: url(../../third_party/FruityGirl/FruityGirl.ttf) format("truetype"); |
| 7 } |
| 8 |
| 9 #emojiLatin { |
| 10 font-family: FruityGirl; |
| 11 font-size:25px; |
| 12 } |
| 13 |
| 14 #normal { |
| 15 font-size:25px; |
| 16 } |
| 17 </style> |
| 18 </head> |
| 19 <body> |
| 20 <p>Following should show Asterisk with FruitGirl similar to Asterisk Image below
</p> |
| 21 <p id="emojiLatin">*</p> |
| 22 <img src="../../third_party/FruityGirl/002A.png" alt="Asterisk" height="25" widt
h="25"> |
| 23 <p>Normal rendering of Asterisk with default font</p> |
| 24 <p id="normal">*</p> |
| 25 </body> |
| 26 </html> |
OLD | NEW |