Footer

Footer is used to add links at the end of your page. It gives an extra margin-top and has a gray background-color. You can use the grid to create section in the footer as in the following example

<div class="footer">
  <div class="columns">
    <div class="col-mobile-12 col-tablet-12 col-desktop-4">
      <span class="footer-title">
        Double
      </span>
      <ul class="footer-items">
        <li class="footer-item">
          <a href="./docs.html">
            <span class="icon">
              <i class="fas fa-file-alt"></i>
            </span>
            <span>
              Docs
            </span>
          </a>
        </li>
        <li class="footer-item">
          <a href="https://github.com/emanuelescarabattoli/double" target="_blank">
            <span class="icon">
              <i class="fab fa-github"></i>
            </span>
            <span>
              Github
            </span>
          </a>
        </li>
      </ul>
    </div>
  </div>
</div>