jsp hello world example
Example: hello world in jsp
<html>
<body>
<%
out.println("Hello World");
%>
</body>
</html>
<html>
<body>
<%
out.println("Hello World");
%>
</body>
</html>