-
Which tag is used for List items?
-
- <dl>
- <ul>
- <ol>
- <li>
- 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.