Answer:
ordered list and unordered list
Step-by-step explanation:
In HTML their are two types of list
1 Ordered list
2 Unordered list.
1. Ordered list
The ordered list is start with the <ol> tag .The elements in this list in the order manner.
we can create ordered list by following
<ol>
<li>sunday</li>
<li>monday</li>
</ol>
output
1 sunday
2 monday
2.Unordered list
The unordered list is start with the <ul> tag .The elements in this list in the unorder manner.
we can create unordered list by following
<ul>
<li>sunday</li>
<li>monday</li>
</ul>
output
. sunday
. monday