<html> <head> <title>Hello World</title> </head> <body> <%-- This is a JSP Comment before JSP Scriplet --%> <% //Prints out to console System.out.println("Hello World in Console!"); //Prints out to HTML page out.println("<h1>Hello World!</h1>"); %> </body> </html>