This is the JavaSCRIPT forum.
JSP uses JAVA.
The two have little in common other than the first 4 characters of their names.
A moderator will surely move this to the proper forum.
Having said that:
JSP pages *ARE* HTML pages. Only the code enclosed in <%....%> is Java.
So you can mix the two as you like.
Code:
<html>
<body>
<h1>See, this is HTML</h1>
<%
// and now we are writing Java code
for ( int i = 0; i < 100; ++i ) { ... }
%>
And this is HTML again.
</body>
</html>