- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ordered list</title>
</head>
<body>
<h1>What are the different types of headlines?</h1>
<p>Heading and subheading tags in descending order of importance:</p>
<ol>
<li>h1</li>
<li>h2</li>
<li>h3</li>
<!-- add items here -->
</ol>
<p>An ordered list is used to list objects or actions when order is important.</p>
</body>
</html>
You have moved to another page
GoalsCompleted
0
- Add three more items to the list of headings: h4, h5, h6.
- Then change the start of the list numbering using the
start
attribute so that it starts with the number2
or greater.