HTML Block Level Elements

address, article, aside, blockquote, canvas, dd, div, dl, dt, fieldset, figcaption, figure, footer, form, h1-h6, header, hr, li, main, nav, noscript, ol, p, pre, section, table, tfoot, ul, video .

HTML Inline Level Elements

a, abbr, acronym, b, bdo, big, br, button, cite, code, dell, dfn, em, i, img, input, ins, kbd, label, map, mark, object, output, q, samp, script, select, small, span, strong, sub, sup, textarea, time, tt, var .


The Headings Elements

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 text Important text Italic text Emphasized text Marked text Smaller text Deleted text Inserted text Subscript text Superscript 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:



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:

Trulli
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

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


The picture Element


My Table
Person 1 Person 2 Person 3
Name Emil Tobias Linus
Age 16 14 10
Active Yes No Yes

Ordered HTML List

  1. Coffe
  2. Milk
  3. Tea

Unordered HTML List

HTML Description Lists

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.

Personalia:








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.

Sorry, your browser does not support canvas.