Este es mi codigo html:
Código HTML:
<table border="1"> <tr> <br> <% int cont = 0; for (int i = 1; i <= 16; i++) { %> <td width="130"> <!-- imágenes de clubes de futbol en fila de 4x4 --> <img src="images/clubes/foto<%=i%>.jpg"> <center> <table border="0"> <tr><!-- aquí esta mi problema--> <td><a href="pag2.jsp?foto=<%=i%>">Ver Uniformes</a></td> </tr> </table> </center> </td> <% cont++; if (cont % 4 == 0) { out.print("</tr> <tr>"); }%> <% }%> </tr> </table>