<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>Insert title here</title> <style type="text/css"> td{ border:1px solid; width: 100px; height: 50px; } </style> </head> <body> <table> <%for(int i=0;i<3;i++){ %><tr> <%for(int j=0;j<5;j++){ %><td></td><% } %> </tr><% } %> </table> </body> </html>