Footer

Basic model

The footer is represented by an p object within a footer object.

<footer>
  <p>
    Developed by
    <a href='http://danielfabbri.com'>Daniel Fabbri</a>
  </p>
</footer>

Container model

In this model, the footer content is contained in a container . In addition, there is now a right-aligned link.

<footer>
  <div class='container'>
    <a class='right'>Link</a>
    <p>
      Developed by
      <a href='http://danielfabbri.com'>Daniel Fabbri</a>
    </p>
  </div>
</footer>