Ordered elements in HTML5

10. Ordered elements in HTML5
HTML elements can be categorized as either block-level elements or inline elements based on their default display behavior.
10.1. HTML Block Elements
Block-level elements start on a new line and take up the full width available.

<div>Element 1</div> <div>Element 2</div> <div>Element 3</div>
Block tags: <address><article><aside><blockquote><canvas><dd><div><dl><dt><fieldset><figcaption><figure><footer><form><h1>-<h6><header><hr><li><main><nav><ol><p><pre><section><table><ul><video>
10.2. HTML Inline Elements
Inline elements do not start on a new line and only occupy the space necessary for their content.

<span>Element 1</span> <span>Element 2</span> <span>Element 3</span>
Inline tags: <a><abbr><b><button><cite><code><dfn><em><i><img><input><label><map><object><output><q><select><small><span><strong><sub><sup><textarea><time>
Test