html-lists Flashcards
1
Q
What is the difference between an ordered list and an unordered list in HTML?
A
<ol> will have list in order and </ol>
<ul> will just have bullet points.</ul>
2
Q
What three HTML elements do you use to build a description list?
A
<dl> desc list
<dt>description term
</dt><dd> desc definition</dd></dl>