Latest Tutorials

Heading elements (<h1>, <h2>, <h3>, <h4>, <h5>, <h6>)

Heading elements describe content's section and information it presents. They are considered to be the titles and sub-titles of the content itself. Hierarchy starts with <...

Address element (<address>)

Address element supplies information about an author or authors of a document or perhaps a contact information. A good practice is to add it at the beginning or the end of a HTML document.

Paragraph element (<p>)

A paragraph is one of the most common elements in HTML, mostly due the fact that writers use it naturally to organize sentences and text sequences. Paragraph should not contain other block...

Line break element (<br />)

Line break is used to determine single line breaks, equivalent to carriage return. Actually a line break is a carriage return ( ), a line feed ( ) or a carriage return / line feed pair. Thi...

Preformatted text (<pre>)

A text line enclosed with <pre> tag should preserve white space and most of...

Phrase elements (<em>, <strong>, <dfn>, <cite>, <code>, <samp>, <kbd>, <var>, <abbr>, <acronym>)

Phrase elements are used to add structural information to the content. In respective order, the meanings of the phrasing elements are: EM => emphases text; STRON...

Quotations (<blockquote>, <q>)

These two elements are used to define a quoted text. <Blockquote> is used for longer quotations, block level content, while <q> is used for inline, shorter quo...

Subscripts and superscripts (<sub>, <sup>)

Subscript and superscript elements are often used for rendering certain type of text, i.e. chemical formulas or properly visualization of phrases in certain languages. Syntax:

Marking document changes (<ins>, <del>)

These two elements are used to mark document changes regarding inserted or deleted parts of it, and in respect with the rest of the document. They are often used as a part of a draft docume...

Font styling elements (<tt>, <i>, <b>, <big>, <small>)

The font style elements are used to offset default or styles sheet based font rendering. In respective order, the meanings of the font syling elements are: TT => teletype...