Lesson 3: List Tags
(Unordered List Example)

You can use the unordered list tag "<ul>" to make bulleted lists. Each item within the unordered list starts with a list item tag "<li>". In HTML, closing tags are not required for "<li>", whereas, they are required for XHTML.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>

<body bgcolor="#bdbdbd" text="black">
<br />
<h2>Directions for a WetNap<sub>&reg;</sub></h2>
<ul>
<li>Tear open packet</li>
<li>Unfold</li>
<li>Use</li>
</ul>
</body>
</html>