Text Basics Flashcards
What does the <blockquote>
element represent in HTML?
The <blockquote>
element represents a block of text for quoting.
What is the purpose of the <q>
element in HTML?
The <q>
element is used for inline quotations, with quotes added by default.
What does the <cite>
element do in HTML?
The <cite>
element provides citation credit without implying a specific role.
What is the use of the <br>
element in HTML?
The <br>
element is used to insert a line break.
How do you display the copyright symbol in HTML?
The copyright symbol is displayed using the ©
HTML entity.
What is the HTML entity for the less-than symbol (<
)?
The HTML entity for the less-than symbol is <
.
How is a citation included in a <blockquote>
element?
A citation is included using the cite
attribute in the <blockquote>
element.
How do you represent an inline quotation in a different language using the <q>
element?
To represent an inline quotation in a different language, use the lang attribute, like <q lang="fr-FR">...</q>
.