List

list is splitted as other tags. The most important thing is that the list of elements is a child of the initialization element

Great list

Great list with the plugin «massPaging»

Source

<link rel="stylesheet" href="css/massPaging.css">
<script src="js/jquery-3.7.1.min.js"></script>
<script src="js/jquery.masspaging.js"></script>
<script>
$(window).on('load',function(){
	var opt = {
		pageHeight:300,
		navDotWrapper:'.boxNavDot'
	}
	$('#veryLongContent').massPaging(opt);
})
</script>

<style>
	.myList li {
		display:inline-block; 
		vertical-align:top;
		width:30%;
		margin-right:2%;
	}
</style>

<ul id="veryLongContent" class="myList">
	<li> <a href="#">Popular Files</a> </li>
	<li> <a href="#">Featured Files</a> </li>
	<li> <a href="#">Top New Files</a> </li>
	<!-- . . . -->
	<li> <a href="#">Top Authors</a> </li>
</ul>

<div align="center" class="boxNavDot"></div>