tor-browser

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

0314-novalid.html (1177B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset=utf-8>
      5    <title>Test 0314</title>    
      6  </head>
      7  <body>
      8    <div id="b" role="banner">
      9      <p>Here is a banner for this page.</p>
     10    </div>
     11    <div id="toc" role="contentinfo">
     12      <p>Here is some information about the page's contents:</p>
     13      <ul id="contents" role="list">
     14        <li role="listitem"><a href="#s1">Section 1</a></li>
     15        <li role="listitem"><a href="#s2">Section 2</a></li>
     16        <li role="listitem"><a href="#a1">Appendix 1</a></li>
     17      </ul>
     18    </div>
     19    <div id="main" role="main">
     20      <p>This is the primary content of this page.  It has some sections.</p>
     21      <div id="s1" role="section">
     22        <h1 role="heading">Some contents that are a header</h1>
     23        <p>Section 1 needs some content!</p>
     24      </div>
     25      <div id="s2" role="section">
     26        <h1 role="heading">This is Section 2</h1>
     27        <p>Section 2 is pretty boring.</p>
     28      </div>
     29      <div id="a1" role="appendix">
     30        <h1 role="heading">This is Appendix 1</h1>
     31        <p role="note">It is a note about the document - not a primary content
     32        item.</p>
     33      </div>
     34    </div>
     35  </body>
     36 </html>