tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

font-face-weight-auto-static-ref.html (438B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8"/>
      4 <title>CSS Test: Support for font-weight:auto in @font-face</title>
      5 <style>
      6    @font-face {
      7        font-family: "Lato";
      8        src: url('/fonts/Lato-Medium.ttf') format('truetype');
      9        font-display: swap;
     10        font-weight: normal;
     11    }
     12    .test {
     13        font-family: "Lato";
     14        font-size: 3em;
     15        font-weight: bold;
     16    }
     17 </style>
     18 
     19 <p class="test">text</p>