The header element represents a group of introductory or navigational aids.
The article element
The article element represents a complete, or self-contained, composition in a document, page, application, or site and that is, in principle, independently distributable or reusable, e.g. in syndication. This could be a forum post, a magazine or newspaper article, a blog entry, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.
The section element
The section element represents a generic section of a document or application. A section, in this context, is a thematic grouping of content, typically with a heading.
The address element
The address element represents the contact information for its nearest article or body element ancestor. For more details see The address element.
The h1, h2, h3, h4, h5, and h6 elements
These elements represent headings for their sections.
The semantics and meaning of these elements are defined in the section on headings and sections.
These elements have a rank given by the number in their name.
The h1 element is said to have the highest rank.
The h6 element has the lowest rank, and two elements with the same name have equal rank.
The hgroup element
The hgroup element represents the heading of a section, which consists of all the h1–h6 element children of the hgroup element.
The element is used to group a set of h1–h6 elements when the heading has multiple levels, such as subheadings, alternative titles, or taglines.
The rank of an hgroup element is the rank of the highest-ranked h1–h6 element descendant of the hgroup element, if there are any such elements, or otherwise the same as for an h1 element (the highest rank).
Other h1–h6 elements of heading content in the hgroup element indicate subheadings or subtitles or (secondary) alternative titles.
The section on headings and sections defines how hgroup elements are assigned to individual sections.
Grouping content
The p element represents a paragraph.
While paragraphs are usually represented in visual media by blocks of text that are physically separated from adjacent blocks through blank lines, a style sheet or user agent would be equally justified in presenting paragraph breaks in a different manner, for instance using inline pilcrows.
function Panel(element, canClose, closeHandler) {
this.element = element;
this.canClose = canClose;
this.closeHandler = function () { if (closeHandler) closeHandler() };
}
The blockquote element represents a section that is quoted from another source.
Switzerland
United Kingdom
United States
Alabama
Delaware
New York
Norway
Switzerland
United Kingdom
United States
Alabama
Delaware
New York
Norway
If you have exactly five gold coins
You get five victory points
If you have one or more gold coins, and you have one or more silver coins
You get two victory points
If you have one or more silver coins
You get one victory point
Otherwise
You get no victory points
The main element must not appear as a descendant of the section element. It cannot appear here so it has been moved to wrap all the content.
The div element has no special meaning at all. It represents its children. It can be used with the class, lang, and title attributes to mark up semantics common to a group of consecutive elements. It can also be used in a dl element, wrapping groups of dt and dd elements.