
HTML>HTML Lsts>Ordered Lists
An ordered list is a list of items. Each item in the list is numbered.
An ordered list starts with the tag <ol> and each list item starts with the <li> tag. The ordered list is closed using the </ol> tag.
Example
Try it out for yourself!
Examine the HTML code below. Cut and paste (Ctrl c + Ctrl v) 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 Ordered List Tag</title>
<body>
<h2>Ordered List</h2>
<p>
<ol>
<li>English
<li>Maths
<li>Art
</ol>
</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.