CBSE Class 10 Computer Applications
Question 10 of 176
HTML I — Basic HTML Elements — Question 8
Back to all questions 8
Question Question 8
The unnumbered lists can be created by ............... tag.
<UL><OL><LI>- Both (1) and (2)
- Both (1) and (3)
- Both (2) and (3)
Both (1) and (3)
Reason — The unnumbered lists can be created by <UL> and <LI> tags. An unnumbered list begins with a tag that identifies the type of list (<UL> for unnumbered) and then uses the <LI> tag to denote the beginning of each new list item. For example:
<UL>
<LI>Apples</LI>
<LI>Bananas</LI>
<LI>Grapes</LI>
</UL>