153k views
0 votes
HTML provides elements for making up which of the following types of lists - check as many as apply

1. bucket list

2. description list

3. ordered list

4. unordered list

User Niko Craft
by
4.5k points

1 Answer

4 votes

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

User Ankit Shukla
by
5.2k points