tor-browser

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

1022481-1-ref.html (919B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>Simple generics test</title>
      5 <meta charset="UTF-8">
      6 <style>
      7 
      8 body {
      9  margin: 20px;
     10 }
     11 
     12 p {
     13  margin: 0;
     14  line-height: 1.2;
     15  font-size: 25px;
     16 }
     17 
     18 </style>
     19 
     20 </head>
     21 <body>
     22 <p>default font</p>
     23 <p style="font-family: serif">serif</p>
     24 <p style="font-family: sans-serif">sans-serif</p>
     25 <p style="font-family: monospace">monospace</p>
     26 <p style="font-family: monospace">-moz-fixed</p>
     27 <p style="font-family: serif">unknown, serif</p>
     28 <p style="font-family: sans-serif">unknown, sans-serif</p>
     29 <p style="font-family: monospace">unknown, monospace</p>
     30 <p style="font-family: monospace">unknown, -moz-fixed</p>
     31 <p style="font-family: serif">unknown, serif, monospace</p>
     32 <p style="font-family: sans-serif">unknown, sans-serif, -moz-fixed</p>
     33 <p style="font-family: monospace">unknown, monospace, serif</p>
     34 <p style="font-family: monospace">unknown, -moz-fixed, sans-serif</p>
     35 </body>
     36 </html>