如何用java编写 网页
发布网友
发布时间:2022-04-22 07:36
我来回答
共3个回答
热心网友
时间:2022-06-17 20:36
一般在网上有免费的界面提供下载,有一定的html,css,脚本方面的知识,即使不懂,也能自我修改达到你要求的效果 算了我直接给你代码得了
*************************************test.html*********************************************************
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>3列固定宽度居中+头部+尾部——<a href="http://www.aa25.cn">标准之路www.aa25.cn</a></title>
<link href="layout.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">This is the Header</div>
<div id="mainContent">
<div id="sidebar">This is the sidebar</div>
<div id="sidebar2">This is the sidebar2</div>
<div id="content">3列固定宽度居中+头部+尾部——<a href="http://www.aa25.cn">标准之路www.aa25.cn</a></div>
</div>
<div id="footer">This is the footer</div>
</div>
</body>
</html>
********************************************layout.css *************************************************
body { font-family:Verdana; font-size:14px; margin:0;}
#container {margin:0 auto; width:900px;}
#header { height:100px; background:#6cf; margin-bottom:5px;}
#mainContent { height:500px; margin-bottom:5px;}
#sidebar { float:left; width:200px; height:500px; background:#9ff;}
#sidebar2 { float:right; width:200px; height:500px; background:#9ff;}
#content { margin:0 205px !important; margin:0 202px; height:500px; background:#cff;}
#footer { height:60px; background:#6cf;}
热心网友
时间:2022-06-17 20:36
先用Html和CSS的知识去设计和布局页面,再用JAVA编写后台代码。
热心网友
时间:2022-06-17 20:37
用java写网页?你用的是applet还是jsp还是servlet啊?