
HTML>HTML Lsts>Unordered Lists
The Unordered List Tag
An unordered list is a list where the items are marked with bullets, typically small black circles.
An unordered list opens with the <ul> tag and closes with the </ul>. Each list item starts with the <li> tag.
Example
Try it out for yourself!
Examine the HTML code below. Cut and paste the following HTML code into the form window below and press the check it out button to see the resulting webpage.
<html><head>
<title>The Unordered List Tag</title>
<body>
<h2>Unordered List</h2>
<p>
<ul>
<li>English
<li>Maths
<li>Art
</ul>
</p>
</body>
</html>Creating your own webpage
Follow these simple steps to create your own webpage and to view your created webpage in your browser.