Lists Flashcards

1
Q

what are the three types of lists in HTML?

A

ordered list/ unordered list/definition list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what element do we use to create an ordered list?

A

(ol) (/ol)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what do we call an item in a list in HTML and what is the correct markup for it?

A

a list item (li) (/li)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what element do we use to create an unordered list?

A

(ul) (/ul)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what element do we use to create a definition list?

A

(dl) (/dl)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what element do we use to contain the term of a definition list?

A

(dt) (/dt)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what element do we use to create a definition in a definition list?

A

(dd) (/dd)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is the difference between an ordered list, unordered list and definition list?

A

ordered lists create a list in order starting with the number 1 and continues depending on how many list items there are.

an unordered list create a list with no order and uses bullet points.

a definition list creates a list of items to be defined.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is a nested list?

A

a nested list is a list within another list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly