tor-browser

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

model-isvalid.html (643B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>Ordered List: &lt;ol&gt; &lt;li&gt;</title>
      6 </head>
      7 <body>
      8  <!-- is block -->
      9  <ol class="class" id="id" lang="en" start="05">
     10    <li class="class" id="id2" lang="en" value="9">text</li>
     11  </ol>
     12 
     13  <!-- can be empty -->
     14  <ol></ol>
     15  <ol>
     16    <li></li>
     17    <li></li>
     18  </ol>
     19 
     20  <!-- can contain structured inline -->
     21  <ol>
     22    <li>some <em>text</em>
     23   <pre>more text</pre>
     24    </li>
     25  </ol>
     26 
     27  <!-- can contain blocks -->
     28  <ol>
     29    <li>
     30      <p>some</p>
     31      <p>text</p>
     32    </li>
     33  </ol>
     34 
     35  <!-- can contain interactive -->
     36  <ol><li><a>text</a></li></ol>
     37 </body>
     38 </html>