mxalbert1996

Font Substitution Test

Sep 14th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8" />
  6.     <title>Font Substitution Test</title>
  7. </head>
  8.  
  9. <body>
  10.     <p style="font-family: Tahoma;">Tahoma</p>
  11.     <p style="font-family: Tahoma; font-weight: bold;">Tahoma Bold</p>
  12. </body>
  13. <style type="text/css">
  14.     @font-face {
  15.         font-family: "Tahoma";
  16.         src: local("Courier New")
  17.     }
  18.  
  19.     @font-face {
  20.         font-family: "Tahoma";
  21.         src: local("Courier New Bold");
  22.         font-weight: bold
  23.     }
  24. </style>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment