3 Lists Flashcards
1
Q
Make a list where the items come in an order
Make a list where order doesn’t matter
add an item to the lists
A
<ol> <li> text </li> </ol>
or <ul>
2
Q
Make a list of definitions
Tag the term
tag the definition
A
<dl> (called definition list)
<dt> term </dt> (called definition term)
<dd> definition </dd> (called definition definition)
3
Q
Make a nested ordered or unordered list
A
<ol>
<li>
text
</li>
<ol>
<li>
text
</li>
</ol>
</ol>