html注册页代码怎么写

1. javascript写的注册页面代码 只是写了 昵称 密码 确认密码 电子邮件地址 其余的自己写一下吧 就是这个格式 自己完成吧!<meta ; charset=utf-8" /> Untitled Document<body> 。
2. 求一个简单的论坛注册页面的HTML代码 <style type="text/css">
<!--
body,td,th {
font-family: 宋体;
font-size: 14px;
}
.STYLE1 {
font-size: 24px;
font-weight: bold;
}
-->
</style>
<p align="center" class="STYLE1">;个人资料补填</p>
<table width="400" border="3" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000" bgcolor="#99CCFF">
<tr>
<td width="96" height="30" align="center">;姓名</td>
<td width="96" height="30" align="center">&nbsp;</td>
<td width="97" height="30" align="center">;性别</td>
<td width="97" height="30" align="center">&nbsp;</td>
</tr>
<tr>
<td height="30" align="center">;学号</td>
<td height="30" align="center">&nbsp;</td>
<td height="30" align="center">;出生日期</td>
<td height="30" align="center">&nbsp;</td>
</tr>
<tr>
<td height="30" align="center">;班级</td>
<td height="30" align="center">&nbsp;</td>
<td height="30" align="center">;专业</td>
<td height="30" align="center">&nbsp;</td>
</tr>
<tr>
<td height="30" colspan="2" align="center">&nbsp;</td>
<td height="30" colspan="2" align="center">&nbsp;</td>
</tr>
<tr>
<td height="30" colspan="2" align="center">&nbsp;</td>
<td height="30" colspan="2" align="center">&nbsp;</td>
</tr>
<tr>
<td height="30" colspan="2" align="center">&nbsp;</td>
<td height="30" colspan="2" align="center">&nbsp;</td>
</tr>
</table>
3. html网页代码,以下这段代码后面怎么写 我负责任的告诉你 , 单纯意义的html是不可能完成保存注册信息的 , 因为html里面只能使用javascript、vbscript等客户端脚本语言 , 这类语言是在浏览器里面执行 , 不可能修改服务器上的任何文件(包括文本) 。
如果你看见某个网站确实action到html实现了数据保存 , 我可以肯定是两种情况 , 一是js代码里面有修改action的语句 , 或者js脚本控制再次提交到服务器脚本(cgi、asp、jsp、php……) 。另外一种方法比较变态 , 就是可以设置WEB服务器 , 把所有的html文件当ASP或者PHP解释处理 , 也就是你看见的html实际上是服务器脚本 。
4. HTML设为首页代码怎么写 <html>
<head>
<meta ; charset=utf-8">
<title>;设为首页的JS代码</title>
</head>
<body>
<p>;方法一:<span onclick="var strHref=http://www.xuexi88.com/zhishi/window.location.href;this.style.behavior='url(#default#homepage)';this.setHomePage('
);" style="CURSOR: hand">;点此
设为首页</a></span></p>
<p>;方法二:<a title="设为首页" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('
);" href="javascript:;">;设为首页</a> </p>
</body>
</html>
5. 用HTML写的简单一点的注册表单 <html><head><title>;注册</title></head>
<body><form name="form1" method="post" action=""> <label>;账号: <input type="text" name="textfield" id="textfield"></label> <p>;密码: <input type="text" name="textfield2" id="textfield2"> </p> <p> <label> <input type="submit" name="button" id="button" value="http://www.xuexi88.com/zhishi/注册"> </label> </p></form></body></html>