用HTML+做员工信息登记表
##首先看一下效果
##下面是代码实现部分
<!DOCTYPE html>
<html>
<head>
<title>biaodan</title>
<style>
.one{height: 20px;width:200px;}
.two{height: 20px;width:100px;}
.there{ margin-left: 29px;}
.four{margin-left: 140px;}
h1{text-align: center;}
body{background-color:pink;}
</style>
</head>
<body>
<h1>员工信息登记表</h1>
用户登录名: <input type="text" name="fname" class="one" placeholder="jhl@163.com" /><br>
真实信息:<input type="text" name="sign" class="one there" placeholder="江翰林" />(必填,只能输入汉字)</br>
真实年龄:<input type="number" name="age" min="0" max="150" class="one there " />(必填)</br>
出生日期:<input type="date" name="date" class="one there " />(必填)</br>
电子邮件:<input type="email" name="email" class="one there" placeholder="123987@126.com"/>(必填)</br>
省份证号:<input type="text" name="number1" class="one there " />(必填,能够以数字,字母x结尾的身份证号)</br>
手机号码:<input type="text" name="number" class="one there " />(必填)</br>
幸运颜色:<input type="color" class="there two " />(请选择你喜欢的颜色)</br>
<input type="submit"class="two four"/> <input type="reset" value="重置" class="two four"/>
</body>
</html>
直接复制到以.html结尾 的文件,运行即可得到上面网页图片。