tor-browser

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

23604-2-ref.html (664B)


      1 <html>
      2 <head>
      3 <style type="text/css">
      4 	body {
      5 		font-family: sans-serif;
      6                        background: lightblue; }
      7 	
      8 	.a li:first-letter {
      9 		font-family: serif;
     10 		font-weight: bold; }
     11 	
     12 	.b li:first-letter {
     13 		color: red; }
     14 	
     15 	.c li:first-letter {
     16 		background: red; }
     17 	
     18 	.d li:first-letter {
     19 		font-size: 1.5em; }
     20 </style>
     21 </head>
     22 
     23 <body>
     24 <ul class="a">
     25 	<li><a>Lorem ipsum dolor sit amet</a></li>
     26 </ul>
     27 <ul class="b">
     28 	<li><del>Lorem ipsum dolor sit amet</del></li>
     29 </ul>
     30 <ul class="c">
     31 	<li><em>Lorem ipsum dolor sit amet</em></li>
     32 </ul>
     33 <ul class="d">
     34 	<li><span>Lorem ipsum dolor sit amet</span></li>
     35 </ul>
     36 </body>
     37 </html>