first-available-font-002-ref.html (472B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS-fonts: reference file</title> 4 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> 5 <style> 6 @font-face { 7 font-family: 'B'; 8 font-style: normal; 9 font-weight: 400; 10 src: url(/fonts/AD.woff) format('woff'); 11 } 12 13 div { 14 width: 1ch; 15 height: 1ch; 16 17 font-size: 200px; 18 background: blue; 19 font-family: 'B'; 20 } 21 </style> 22 23 <p>Test passes if there is <strong>a blue square</strong> below. 24 25 <div></div>