core-logo

Bootstrap Footer

Bootstrap Footer is an additional navigation used for displaying general information that a user might want to access from any page within your site. It is a place to display boilerplate text about the site, company info, copyrights, links to a contact form, sitemap, FAQ and other such resources.

On this page:



How it works

Here’s what you need to know before getting started with the aside menu:

  • Bootstrap footer requires a wrapping .footer.

Examples

<div class="d-flex flex-column">
  <footer class="footer">
    <div>
      <a href="https://coreui.io">CoreUI</a>
      <span>&copy; 2020 creativeLabs.</span>
    </div>
    <div class="ml-auto">
      <span>Powered by</span>
      <a href="https://coreui.io">CoreUI</a>
    </div>
  </footer>
</div>