i created a site, And added pages to my site, since page size exceeds i need to create pagination in html
i have created this method
<a href="page1.html">1</a><a href="page2.html">2</a><a href="page3.html">3</a>
in this way i created
Problem is when i add new page i need to replace all code again like this
<a href="newpage1.html">1</a><a href="page1.html">2</a><a href="page2.html">3</a><a href="page3.html">4</a>
ever time when i add new page i need to replace all code is ther a way to do this without PHP
Can sombody help me any idea to do this in html