tor-browser

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

030-isvalid.xhtml (629B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3  <title>Unordered List: &lt;ul&gt; &lt;li&gt;</title>
      4 </head>
      5 <body>
      6  <!-- is block -->
      7  <ul class="class" id="id" xml:lang="en">
      8    <li class="class" id="id2" xml:lang="en">text</li>
      9  </ul>
     10 
     11  <!-- can be empty -->
     12  <ul></ul>
     13  <ul>
     14    <li></li>
     15    <li></li>
     16  </ul>
     17 
     18  <!-- can contain structured inline -->
     19  <ul>
     20    <li>some <em>text</em>
     21   <pre>more text</pre>
     22    </li>
     23  </ul>
     24  <!-- can contain blocks -->
     25  <ul>
     26    <li>
     27      <p>some</p>
     28      <p>text</p>
     29    </li>
     30  </ul>
     31 
     32  <!-- can contain interactive -->
     33  <ul><li><a>text</a></li></ul>
     34 </body>
     35 </html>