The HTML div element is a block level container for other elements. By itself, it has no presentational or semantic meaning, except that, as a block level element, browsers will render a line break before and after its content. div element is currently the most common method for identifying the structural sections of a document.
Ex: <div id="main_navigation"> ⋮
<div id="body_content">
<h1>Page heading</h1>
<p>Body content</p>
</div>