Quotes and Lists Flashcards

1
Q

For longer block style quotes, use

A

<blockquote>
</blockquote>

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

Which tag is used for short, inline quotes?

A

q

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

Which command is used for a line break?

A

(br>

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

Does a line break tag have content?

A

No.

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

What is a void element?

A

Has no content

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

Can a void element have content?

A

No

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

Do void elements have closing tags in HTML 5?

A

No…such as <br></br> or <img></img>

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

What’s the difference between a void element and an empty element?

A

In an empty element you have an opening and closing tag but no content. A void element only has an opening element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
What are:
<li>
<ol>
<ul>
<dl>
<dt>
<dd>
A
List item
Ordered list (numbered 1, 2, 3...)
Unordered list (bullet points)
Definition list
Definition term
Definition description
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is nesting?

A

Putting one element inside another

Ex: The <p> element is nested inside the element

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