html_fonts-test-page.html (1093B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <!doctype html> 4 5 <html> 6 <head> 7 <meta charset="utf-8"/> 8 <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> 9 <meta http-equiv="Pragma" content="no-cache" /> 10 <meta http-equiv="Expires" content="0" /> 11 <title>Network Monitor test page</title> 12 <style> 13 @font-face { 14 font-family: test-font; 15 src: url("ostrich-regular.ttf") format("truetype"); 16 font-style: normal; 17 font-weight: 400; 18 font-display: swap; 19 } 20 21 @font-face { 22 font-family: test-font-bold; 23 src: url("ostrich-black.ttf") format("truetype"); 24 font-style: normal; 25 font-weight: 700; 26 font-display: swap; 27 } 28 29 .regular { 30 font-family: test-font; 31 } 32 33 .bold { 34 font-family: test-font-bold; 35 font-weight: 700; 36 } 37 </style> 38 </head> 39 40 <body> 41 <p class="regular">Regular font</p> 42 <p class="bold">Bold font</p> 43 </body> 44 45 </html>