<!-- XHTML:Basics snippet 4. -->
<!-- Further XHTML content. -->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>View snippet page</title>
</head>
<body>

<!-- nesting elements in an unordered list -->
<p>An unordered list</p>
<ul>
	<li>Item 1</li>
	<li>Item 2</li>
	<li>Item 3</li>
</ul>

<!-- an ordered list -->
<p>An ordered list</p>
<ol>
	<li>Item 1</li>
	<li>Item 2</li>
	<li>Item 3</li>
</ol>

<!-- nesting unordered lists in an ordered list -->
<p>Nesting unordered lists in an ordered list</p>
<ol>
	<li>Main Item 1
		<ul>
			<li>Sub Item 1:1</li>
			<li>Sub Item 1:2</li>
		</ul>
	</li>
	<li>Main Item 2
		<ul>
			<li>Sub Item 2:1</li>
			<li>Sub Item 2:2</li>
			<li>Sub Item 2:3</li>
		</ul>
	</li>
</ol>
<!-- a definition list -->
<p>A definition list</p>
<dl>
  <dt>Identify a term</dt>
  <dd>Identify the definition</dd>
</dl>

</body>
</html>