day-3 html

day 3

HTML Quotation and Citation Elements

HTML

for Quotations he HTML
element defines a section that is quoted from another source. Browsers usually indent "blockquote" elements.

HTML for Short Quotations

The HTML tag defines a short quotation. Browsers normally insert quotation marks around the quotation
HTML for Abbreviations The HTML tag defines an abbreviation or an acronym, like "HTML", "CSS", "Mr.", "Dr.", "ASAP", "ATM". Marking abbreviations can give useful information to browsers, translation systems and search-engines. Tip: Use the global title attribute to show the description for the abbreviation/acronym when you mouse over the element.

Example

The WHO was founded in 1948.

HTML

for Contact Information

The HTML

tag defines the contact information for the author/owner of a document or an article. The contact information can be an email address, URL, physical address, phone number, social media handle, etc. The text in the
element usually renders in italic, and browsers will always add a line break before and after the
element.

Example

Written by John Doe.
Visit us at:
Example.com
Box 564, Disneyland
USA

HTML for Work Title

The HTML tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.). Note: A person's name is not the title of a work. The text in the element usually renders in italic.

Example

The Scream by Edvard Munch. Painted in 1893.

HTML for Bi-Directional Override

BDO stands for Bi-Directional Override. The HTML tag is used to override the current text direction:

Example This text will be written from right to left

Tag Description Defines an abbreviation or acronym


Defines contact information for the author/owner of a document
Defines the text direction
Defines a section that is quoted from another source
Defines the title of a work
Defines a short inline quotation

HTML Comments

HTML comments are not displayed in the browser, but they can help document your HTML source code.

HTML Comment Tags

!-- Write your comments here --

Comments

Popular Posts