tor-browser

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

first-letter-005-ref.html (531B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8">
      5    <title>CSS Reference: ::first-letter formatting</title>
      6    <style>
      7        div {
      8            font-size: 36px;
      9        }
     10        span {
     11            color: green;
     12        }
     13    </style>
     14 </head>
     15 <body>
     16    <p>Test passes if the "$", "(&pound;)", "&#x20B9;" and "&copy;" symbols are green.</p>
     17    <div><span>$</span>1,234.56</div>
     18    <div><span>(&pound;)</span>78.90</div>
     19    <div><span>&#x20B9;</span>10,000</div>
     20    <div><span>&copy;</span>2021</div>
     21 </body>
     22 </html>