PAGINATION
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>

<style>
   .center {
      text-align: center;
   }
   .pagination a {
     border: 1px solid blue;
     color: green;
	 padding: 8px;
	 text-decoration: none;
	 transition: 0.2s;
	 margin: 0 3px;
	
   }	
   .pagination a.active {
       background-color: green;
	   color: black;
   }
   .pagination a:hover:not(.active) {
      background-color: #cccccc;
	  }
</style>
</head>
<body>
  <div class="center">
    <h2> Pagination</h2>
	<p> Here is the pagination </p>
	<div class="pagination">
	   <a href="#" >&laquo;</a>
	   <a href="#" class="active">1</a>
	   <a href="#">2</a>
	   <a href="#">3</a>
	   <a href="#">4</a>
	   <a href="#">5</a>
	   <a href="#">6</a>
	   <a href="#">&raquo;</a>  
	</div>
  </div>
</body>
</html>