HTML Dog
Skip to navigation

Basic lists

ul, ol, and li elements.

HTML

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Basic lists</title>
</head>
<body>
	<ul>
		<li>This</li>
		<li>That</li>
		<li>The Other</li>
	</ul>

	<ol>
		<li>The first thing</li>
		<li>The second thing</li>
		<li>The third thing</li>
	</ol>

	<!-- 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