hello.jsp
<%@ page contentType="text/html; charset=euc-jp" %>
<HTML>
<HEAD><TITLE>テキスト サイズが拡大する「ハロー ワールド」の作成</TITLE></HEAD>
<% request.setAttribute("color", "white"); %>
<% request.setAttribute("title", "テキスト サイズが拡大する「ハロー ワールド」の作成"); %>
<%@ include file="header.jsp" %>
<% for(int i = 1;i < 8;i++) { %> <FONT SIZE=<%=i%>>ハロー ワールド</FONT><BR>
<% } %>
<% for(int i = 7;i > 0;i--) { %> <FONT SIZE=<%=i%>>ハロー ワールド</FONT><BR>
<% } %>
<br>
<br>
<br>
<br>
<jsp:include page="viewsource.jsp"/>
<%@ include file="footer.html" %>
</BODY>
</HTML>