Divisions

Divisions are used to break a page into sections containing other HTML elements, such as headings, images, paragraphs and lists.

A typical page will have divisions for the:

  • page header
  • navigation bar
  • page content
  • page footer

Each division will often have a unique identifier – this can be used to format each division separately.

01
02
03
04
05
06
07
08
09
10
11
<div id="header">
    ##########
</div>
 
<div id="nav">
    ##########
</div>
 
<div id="content">
    ##########
</div>