attributedStringCustomFont.html 357 B

12345678910111213141516
  1. <html>
  2. <head>
  3. <style>
  4. @font-face {
  5. font-family: customFont;
  6. src: url(Ahem.ttf);
  7. }
  8. </style>
  9. </head>
  10. <body contenteditable style="font-family: customFont; font-size: 48px;">Lorem Ipsum
  11. <script>
  12. document.body.focus();
  13. </script>
  14. </body>
  15. </html>