font-page.html 387 B

1234567891011121314151617181920212223
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. font-size: 4em;
  6. }
  7. script, style {
  8. display: block;
  9. background: #F66;
  10. }
  11. @font-face {
  12. font-family: "SourceSansPro";
  13. src: url("SourceSansPro/SourceSansPro-Regular.woff");
  14. }
  15. .foo {
  16. font-family: SourceSansPro;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="foo">Some text</div>
  22. </body>
  23. </html>