I use the following code to create a footer using Bootstrap
:
<nav class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<div class="navbar-header">
<span class="navbar-brand">Ok Bye</span>
</div>
<p class="navbar-text navbar-right">company © 2017</p>
</div>
</nav>
I want a static footer
at the bottom of the page, not one that is visible all the time in the viewport
. What is the Bootstrap
way to achieve this?