Text Basics Flashcards

1
Q

What does the <blockquote> element represent in HTML?

A

The <blockquote> element represents a block of text for quoting.

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

What is the purpose of the <q> element in HTML?

A

The <q> element is used for inline quotations, with quotes added by default.

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

What does the <cite> element do in HTML?

A

The <cite> element provides citation credit without implying a specific role.

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

What is the use of the <br> element in HTML?

A

The <br> element is used to insert a line break.

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

How do you display the copyright symbol in HTML?

A

The copyright symbol is displayed using the &copy; HTML entity.

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

What is the HTML entity for the less-than symbol (<)?

A

The HTML entity for the less-than symbol is &lt;.

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

How is a citation included in a <blockquote> element?

A

A citation is included using the cite attribute in the <blockquote> element.

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

How do you represent an inline quotation in a different language using the <q> element?

A

To represent an inline quotation in a different language, use the lang attribute, like <q lang="fr-FR">...</q>.

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