
<html>
<body>
<center>
<h1>My first jsp page.</h1><br>
</center>

<% if (1 > 2) { %>TRUE<% } else { %>FALSE<%}%>

<%--this is supposed to be a comment, and not be seen in a web browser --%>

counting from 1 to 10 :)<br>
<%
for(int i=1;i<=10;i++){
		out.print(i);
		out.println("<br>");
	}
%>

<br><br>
printing some html 10 times<br>

<%for(int j=1;j<=10;j++){%>

<b>Hello World<b><br>

<%}%>

Expression: <%="hallo" %>

</center>
</body>
</html>

