标签:
这里记录着人生第一次写的东西..还有很多不懂的东西.以后会做的更好.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>用户登录</title>
</head>
<body background="未标题-3 - 副本.jpg"><!--background 背景图片-->
<fieldset style="width:250px;>/*style width 宽度*/
<legend>用户登录</legend>
<form action="#" method="post" id="frmLogin">
<p>登录账户:<input type="text" id="firstname"/></p>
<p>登录密码:<input type="text" id="lastname"/></p>
<p>性别: <input type="radio" checked="checked" name="gender" value="male"/>男
<input type="radio" name="gender" value="female"/>女</p>
<p>兴趣:
<label><input name="Fruit" type="checkbox" value="" />篮球 </label>
<label><input name="Fruit" type="checkbox" value="" />音乐 </label>
<label><input name="Fruit" type="checkbox" value="" />睡觉 </label>
</p>
</form>
<div>
<input type="submit" value="确定" id="btnOK">
<input type="reset" value="注册" id="btnEsc">
</div>
</form>
</fieldset>
<script type="text/javascript" src="login,js">
</script>
</body>
</html>
这将会是我写过的最有意义也是最烂的东西.
标签:
原文地址:http://www.cnblogs.com/Lady-Dong/p/4890653.html