---
title: "Create pagination with the help of Bootstrap classes"  
description: "Create pagination with the help of Bootstrap classes"  
author: "Ethan Karla"  
published: 2021-07-28  
updated: 2021-07-28  
canonical: https://www.mindstick.com/forum/156610/create-pagination-with-the-help-of-bootstrap-classes  
category: "bootstrap"  
tags: ["bootstrap"]  
reading_time: 1 minute  

---

# Create pagination with the help of Bootstrap classes

How to create [pagination](https://www.mindstick.com/blog/265/pagination-in-php) with the help of [Bootstrap classes](https://www.mindstick.com/forum/156617/collapsible-navbar-with-logo-with-the-help-of-bootstrap-classes)?

## Replies

### Reply by Anonymous User

Pagination are usually used to those web pages which are having the lots of pages.

Let's have an example to demonstrate how to use progress-animated bar in [Bootstrap](https://www.mindstick.com/articles/1555/image-viewer-using-bootstrap-carousel) :

```
<!DOCTYPE html>
<html lang='en'>
<head>
  <title>Bootstrap Pagination</title>
  <meta charset='utf-8'>
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css'>
  <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js'></script>
</head>
<body>
<div class='jumbotron'>
  <h2>Pagination | Active</h2>
  <p>Create a pagination with the help of a Bootstrap classes</p>
  <ul class='pagination'>
    <li class='page-item'><a class='page-link' href='#'>Previous</a></li>
    <li class='page-item'><a class='page-link' href='#'>1</a></li>
    <li class='page-item active'><a class='page-link' href='#'>2</a></li>
    <li class='page-item'><a class='page-link' href='#'>3</a></li>
    <li class='page-item'><a class='page-link' href='#'>Next</a></li>
  </ul>
</div>
</body>
</html>
```

Hope this will help you.

Happy Coding!


---

Original Source: https://www.mindstick.com/forum/156610/create-pagination-with-the-help-of-bootstrap-classes

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
