<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>forEach tag</title> </head> <body> <c:forEach var="counter" begin="1" end="10"> <c:out value="${counter}"/> <br/> </c:forEach> </body> </html>