<html> <head> <title>Count to 10 Example(using JSP Scriptlet)</title> </head> <body> <% for(int i=1;i<=10;i++) { %><%=i%> <br /> <% } %> </body> </html>