PREVIOUS NEXT BUTTON
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
	a {
	  text-decoration: none;
	  display: inline-block;
	  padding: 10px 16px;
	  font-size: 25px;
	}

	a:hover {
	  background-color: #CCCCCC;
	  color: blue;
	}

	.previous {
	  background-color: cyan;
	  color: blue;
	}

	.next {
	  background-color: cyan;
	  color: blue;
	}

	

</style>
</head>
<body>
    
	<h1>Customize Previous and Next buttons</h1>
	<a href="#" class="previous ">&#8249; Previous</a>
   <a href="#" class="next ">Next &#8250; </a>

	
</body>
</html>