HTML Dog
Skip to navigation

Nested lists

Lists inside lists.

HTML

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Nested lists</title>
</head>
<body>
	<ul>
		<li>This
			<ul>
				<li>This type of this</li>
				<li>That type of this
					<ul>
						<li>This type of that type of this</li>
						<li>That type of that type of this</li>
						<li>The other type of that type of this</li>
					</ul>
				</li>
				<li>The other type of this</li>
			</ul>
		</li>
		<li>That</li>
		<li>The Other</li>
	</ul>

	<!-- Link back to HTML Dog: -->
	<p><a href="http://www.htmldog.com/examples/"><img src="http://www.htmldog.com/badge1.gif" alt="HTML Dog"></a></p>
</body>
</html>

Output

View original