Modern Pagination in html and css 
|  | 
| 
 | 
If you have a web site with lots of pages, you may wish to add some sort of pagination to each page. 
A basic pagination in Bootstrap looks like this:
To create a basic pagination, add the 
.pagination class to an <ul> element:<li><a href="#">1</a></li>
<li class="active"><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
</ul>
 


0 Comments