blob: da9df2f544411ce4f11a8eea78e082de6ae29bcd [file] [log] [blame]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Unordered List: &lt;ul&gt; &lt;li&gt;</title>
</head>
<body>
<!-- is block -->
<ul class="class" id="id" xml:lang="en">
<li class="class" id="id2" xml:lang="en">text</li>
</ul>
<!-- can be empty -->
<ul></ul>
<ul>
<li></li>
<li></li>
</ul>
<!-- can contain structured inline -->
<ul>
<li>some <em>text</em>
<pre>more text</pre>
</li>
</ul>
<!-- can contain blocks -->
<ul>
<li>
<p>some</p>
<p>text</p>
</li>
</ul>
<!-- can contain interactive -->
<ul><li><a>text</a></li></ul>
</body>
</html>