Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>Font Substitution Test</title>
- </head>
- <body>
- <p style="font-family: Tahoma;">Tahoma</p>
- <p style="font-family: Tahoma; font-weight: bold;">Tahoma Bold</p>
- </body>
- <style type="text/css">
- @font-face {
- font-family: "Tahoma";
- src: local("Courier New")
- }
- @font-face {
- font-family: "Tahoma";
- src: local("Courier New Bold");
- font-weight: bold
- }
- </style>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment