HTML COURSE โข LESSON 10
HTML Quotations
HTML provides special elements for quotations, citations, abbreviations and contact information.
The blockquote Element
The <blockquote> element is used for a
quotation from another source.
Block Quote
<blockquote>
Education is the foundation
of a better future.
</blockquote>
The q Element
The <q> element creates a short quotation.
Short Quote
<p>
EDUHUB says:
<q>Learn, Practice and Improve.</q>
</p>
The abbr Element
The <abbr> element defines an abbreviation.
Abbreviation
<p>
<abbr title="HyperText Markup Language">
HTML
</abbr>
is used to create web pages.
</p>
The address Element
The <address> element can contain contact
information.
Address
<address>
EDUHUB Learning Platform<br>
Sri Lanka
</address>
The cite Element
The <cite> element identifies the title of
a creative work.
Citation
<p>
<cite>EDUHUB HTML Course</cite>
was created for students.
</p>