tor-browser

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

highlight-text-ref.html (617B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <style>
      5        :root {
      6            font-family: monospace;
      7            letter-spacing: 2px;
      8        }
      9        #style1 {
     10            background-color: yellow;
     11            color:green;
     12        }
     13        #style2 {
     14            background-color: blue;
     15            color:red;
     16        }
     17        #style3 {
     18            background-color: purple;
     19            color:pink;
     20        }
     21    </style>
     22 </head>
     23 <body>
     24    O<span id="style1">n</span>e<span id="style2"> </span>t<span id="style2">w</span>o<span id="style3"> </span>t<span id="style3">h</span>re<span id="style3">e</span>
     25 </body>
     26 </html>