Lists Flashcards
What are the three types of lists in HTML?
Ordered lists, unordered lists, description lists.
What are the two elements inside a description list in HTML?
Description terms (<dt>
) and description details (<dd>
).
What is the parent element for unordered lists in HTML?
The <ul>
element.
What is the parent element for ordered lists in HTML?
The <ol>
element.
What attributes can be used with the <ol>
element in HTML?
type
, reversed
, and start
.
What is the role of the <li>
element in HTML lists?
The <li>
element represents a list item and is used as a child of <ul>
, <ol>
, or <menu>
elements.
What attribute is used to specify the starting number in an ordered list?
The start
attribute.
What HTML element contains a list of <option>
elements?
The <select>
element.
What is the difference between ordered and unordered lists in HTML?
Ordered lists use numbers or letters (e.g., <ol>
), while unordered lists use bullets (e.g., <ul>
).