<!--File jsp001.jsp
 02/05/00
 -->
  
 <html>
      <body>
      <H1>My First JSP Page</H1>
      <H2>Hello, JSP world!</H2>
  
      <% for (int i=0; i<11; i++) { %>
          <br> 
          <%= i %>
      <% }//end for loop %>
  
      <H3>Isn't this fun</H3>
  
      </body>
 </html>

Figure 1