Home » HTML » Html miscellaneous » Question
  1. Which tag is used for List items?
    1. <dl>
    2. <ul>
    3. <ol>
    4. <li>
    5. None of these
Correct Option: D

li is for the list items. The list is indented by default by the browser. <li> is written inside <ol> element having opening <li> tag and closing </li> tag. Sometimes <ol> can also include type attribute which defines type of numbering. <ol> represents a ordered list where as <ul> is unordered list. A description list is specified by <dl> tag.



Your comments will be displayed only after manual approval.