htmlbeginnermit
Pagination
A pagination control with active page.
4.0k1.1k750260
About this module
A classic pagination bar with prev/next buttons and numbered pages.
#pagination#nav
Source code
Installation
- 1
Create the files
Create `index.html`, `style.css` and (if listed) `script.js` in the same folder.
- 2
Paste the code
Copy each file's source into its matching file.
- 3
Open in the browser
Open `index.html` in any modern browser.
Usage
- 1
Copy the HTML
Paste the markup where you need it.
<link rel="stylesheet" href="style.css" /> <nav class="mh-pagination" aria-label="Pagination"> <button disabled aria-label="Previous page">←</button> <a href="#" class="active" aria-current="page">1</a> <a href="#">2</a> <a href="#">3</a> <span>…</span> <a href="#">12</a> <button aria-label="Next page">→</button> </nav>