HelloWord.jsp(jsp时尚百例1)
<%@ page language="java" %>
<%@ page contentType="text/html; charset=GB2312"%>
<html>
<head>
<title>hello World</title>
</head>
<body bgcolor="#ffffff">
<center>
<font size='5' color='blue'>各种字体大小显示</font>
</center>
<br>
<hr>
<br>
<div align="center">
<%
for(int i=1; i<=6;i++)
out.println("<h" + i + ">hellp World!</h" + i + ">");
%>
<div>
</body>
</html>
图片演示
<%@ page contentType="text/html; charset=GB2312"%>
<html>
<head>
<title>hello World</title>
</head>
<body bgcolor="#ffffff">
<center>
<font size='5' color='blue'>各种字体大小显示</font>
</center>
<br>
<hr>
<br>
<div align="center">
<%
for(int i=1; i<=6;i++)
out.println("<h" + i + ">hellp World!</h" + i + ">");
%>
<div>
</body>
</html>
图片演示
weiking
2005-11-27 22:33:38
评论:0
阅读:869
引用:0
