lists and navigation Flashcards

1
Q

unordered list tags

A

<ul> and <li>
</li></ul>

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

ordered list tags

A

<ol> and <li>
</li></ol>

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

<ul>
</ul>

A

container/parent for unordered list

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

<li>
</li>

A

individual list item within container/parent ul

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

how to create nav bar with ul and li

A

<nav>
<ul>
<li><a>name</a><li>
<li><a>name</a><li>
</ul>
</nav>
</li></li></li></li></ul></nav>

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

how to style nav bar

A

styling goes on with a (text, font etc)
positioning of a is through styling ul and li

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

style interactions

A

a:hover
a:focus

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

list-style-type

A

changes the type of bullet point

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

how to create and style ordered list with different letters/numbers

A

<ol>
<li>first</li>
<li>second</li>
</ol>

.name {
list-style-type: decimal;
}

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

list-style-type types

A

decimal: numbers
upper-alpha: upper case
lower-roman: lower case roman numerals

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