HTML Content Grouping Tags

Block tags used to group content in HTML 5

The HTML tags for grouping and separating content, such as for creating paragraphs and line breaks in HTML, are:

The <blockquote>, <div> and <p> tags are paired tags, with both a start tag and an end tag enclosing the content to be grouped. The <hr/> tag is a standalone tag used to separate content.

Inline tags used to group content in HTML 5

The <span> tag is a paired tag, with both a start tag and an end tag enclosing the content to be grouped. The <br/> and <wbr/> tags are standalone tags used to separate content.

Other ways to group content in HTML 5