tor-browser

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

c522-font-family-000.xht (2089B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: font-family</title>
      5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#font-family"/>
      6   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
      7   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      8   <style type="text/css"><![CDATA[
      9    p { margin: 0; color: navy; }
     10    div.a {font-family: serif;}
     11    div.b {font-family: monospace;}
     12    .one {font-family: serif;}
     13    .two {font-family: sans-serif;}
     14    .three {font-family: cursive;}
     15    .four {font-family: fantasy;}
     16    .five {font-family: monospace;}
     17    .six {font-family: sans-serif,cursive;}
     18    .seven {font-family: monospace,serif;}
     19   ]]></style>
     20   <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-family-prop" title="15.3 Font family: the 'font-family' property"/>
     21   <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-family-prop"/>
     22  </head>
     23  <body>
     24   <div class="a">
     25    <p> This sentence should be in a serif font. </p>
     26    <p class="one"> This sentence should be in a serif font. </p>
     27    <p class="two"> This sentence should be in a sans-serif font. </p>
     28    <p class="three"> This sentence should be in a cursive font. </p>
     29    <p class="four"> This sentence should be in a fantasy font. </p>
     30    <p class="five"> This sentence should be in a monospace font. </p>
     31   </div>
     32   <p class="six"> This sentence should be in a sans-serif font. </p>
     33   <p class="seven"> This sentence should be in a monospace font. </p>
     34   <div class="b">
     35    <p> This sentence should be in a monospace font. </p>
     36    <p class="one"> This sentence should be in a serif font. </p>
     37    <p class="two"> This sentence should be in a sans-serif font. </p>
     38    <p class="three"> This sentence should be in a cursive font. </p>
     39    <p class="four"> This sentence should be in a fantasy font. </p>
     40    <p class="five"> This sentence should be in a monospace font. </p>
     41   </div>
     42  </body>
     43 </html>