<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>个人信息填写</title>
</head>
<style type="text/css">
* {margin:0;padding:0;}/*去掉页面样式*/
body{color:white;}
.content{
text-align:center;/*文本居中*/
background-color:yellow;
left:0;
width:100%;
height:100%;
margin-top:0px;
overflow:hidden;/*隐藏滚动条*/
}
form{
padding:20px 0;
}
form input{
border-style: inset;
display:block;
margin:0px auto 10px auto;/*上 右 下 左*/
padding:10px;
width:220px;
border-radius:30px;/*H5设置圆角边框*/
font-size:18px;
font-weight:300;
text-align:center;
}
form button{
align:center;
background-color:gainsboro;
border-radius:10px;
border-style: outset;
height:30px;
width:50px;
padding:5px 10px;
}
</style>
<body>
<div class="content">
<form action="实验一_1.html" method="post">
<input type="text" name="1" placeholder="请输入姓名"/>
<input type="text" name="2" placeholder="请输入年龄">
<input type="text" name="3" placeholder="请输入地址">
<input type="text" name="4" placeholder="请输入身份">
<input type="text" name="5" placeholder="请输入邮箱">
<button id="asd" >提 交</button>
</form>
</div>
</body>
</html>