To add pagination on each pages using bootstrap

When we have many pages in website we need to add page numbers and it should be selected based on page opened in bootstrap we can add paginations and do so
To create a basic pagination, add class name as .pagination class to an element
Example:

                  
  <ul class="pagination">
    <li><a href="#">1</a></li>
    <li><a href="#">2</a></li>
    <li><a href="#">3</a></li>
    <li><a href="#">4</a></li>
    <li><a href="#">5</a></li>
  </ul>

Leave a comment

Your email address will not be published. Required fields are marked *