The h1 to h6 tags are used to define HTML headings, h1 defines the most important heading, h6 defines the least important heading.
Note: Only use one h1 per page - this should represent the main heading/subject for the whole page. Also, do not skip heading levels - start with h1, then use h2, and so on.
HTML Text Formatting Elements
Bold textImportant textItalic textEmphasized text Marked text Smaller text Deleted text Inserted text Subscript textSuperscript text
The Blockquote Element
Blockquote: For 60 years, WWF has worked to help people and nature thrive. (q) for Qoutations.
The article element
The article tag specifies independent, self-contained content.
An article should make sense on its own and it should be possible to distribute it independently from the rest of the site.
Potential sources for the article element:
Forum post
Blog post
News story
The Abbr Element
Marking up abbr can give useful information to browsers, translation systems and search-engines. Example The WHO was founded in 1948.
The Address Element
The HTML address element defines contact information (author/owner) of a document or article.
Written by John Doe.
Visit us at:
Example.com
Box 564, Disneyland
USA
The Figure and Figcaption Elements
Use a figure element to mark up a photo in a document, and a figcaption element to define a caption for the photo:
Fig.1 - Trulli, Puglia, Italy.
The Cite Element
The HTML cite element defines the title of a work. Browsers usually display cite elements in italic.
The Scream by Edvard Munch. Painted in 1893.
The Dbo Element
If your browser supports bi-directional override bdo, the next line will be written from right to left rtl:
This line will be written from right to left
Links
_self - Default. Opens the document in the same window/tab as it was clicked
Visit W3Schools!
_top - Opens the document in the full body of the window
Visit W3Schools!
The title attribute specifies extra information about an element. The information is most often shown as a tooltip text when the mouse moves over the element.
Visit our HTML Tutorial
Use mailto: inside the href attribute to create a link that opens the user's email program (to let them send a new email):
Send email
The dl tag defines the description list, the dt tag defines the term (name), and the dd tag describes each term:
Coffe
-Black
Milk
-2%
Tea
-Herbs
The div element is often used as a container for other HTML elements.
London
London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.
Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.
The span element
My mother has blue eyes and my father has dark green eyes.
The Form & Fieldset Element
The fieldset tag is used to group related elements in a form.The fieldset tag draws a box around the related elements.
Tip: The legend tag is used to define a caption for the fieldset element.
The Canvas Element
The HTML canvas element is used to draw graphics on a web page.
The HTML canvas element is only a container for graphics. You must use a script to actually draw the graphics. Canvas has several methods for drawing paths, boxes, circles, text, and adding images. Canvas is supported by all major browsers.