What should be the best precise markup for a pagination structure? should be tables?, div or span?, simple links or other?
NAV STYLE
<nav>
<a href="#1">1</a>
<a href="#1">2</a>
<a href="#1">3</a>
</nav>
LIST STYLE
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
TABLE STYLE or other?
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>
I think now we have html5 should be <nav>
plus <a>
but I'm not sure...