tor-browser

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

four.html (418B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <title>four stylesheets</title>
      5  <link rel="stylesheet" type="text/css" media="scren" href="simple.css"/>
      6  <style type="text/css">
      7  div {
      8    font-size: 2em;
      9  }
     10  </style>
     11  <style type="text/css">
     12  span {
     13    font-size: 3em;
     14  }
     15  </style>
     16  <style type="text/css">
     17  p {
     18    font-size: 4em;
     19  }
     20  </style>
     21 </head>
     22 <body>
     23 <div>four <span>stylesheets</span></div>
     24 </body>
     25 </html>