<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>学生管理系统</title>
<link rel="stylesheet" href="iconfont/iconfont.css">
<style>
body{
margin: 0;
background-color: #ffffff;
}
header{
display: flex;
flex-direction: column;
justify-content: space-between;
}
#biaotou{
position: fixed;
width: 100%;
height: 40px;
display: flex;
justify-content: space-between;
background-color: #222222;
color: antiquewhite;
align-items: center;
/*padding: 20px;*/
}
#xinxi{
/*height: 60px;*/
/*font-size: 20px;*/
background-color: #eeeeee;
color: #6a709e;
margin-top: 40px;
/*margin-left: 20px;*/
}
main{
padding: 15px;
}
#nianling{
width: 50%;
}
#jiao{
height: 31px;
text-align: center;
margin-right: 20px;
color: white;
background-color:#337bb8;
}
.jieshu{
/*margin-bottom: 15px;*/
text-align: center;
color: #8c898a;
border-radius: 5px;
}
.changdu{
width: 50%;
}
</style>
</head>
<body>
<header>
<div id="biaotou">
<span style="padding-left: 14px">学生管理系统</span>
<i style="padding-right: 14px" class="iconfont icon-duoxiangxuanze"></i>
</div>
<span id="xinxi" style="padding-left: 14px">添加学生信息</span>
</header>
<main>
<div>
<p>姓名:</p>
<input type="text" class="changdu" placeholder="请填写学生姓名">
</div>
<div>
<p>性别:</p>
<input type="radio" name="question1" id="boy"><label for="boy">男</label>
<input type="radio" name="question1" id="girl"><label for="girl">女</label>
</div>
<div>
<p>年龄:</p>
<select name="年龄" id="nianling">
<option value="">18</option>
<option value="">19</option>
<option value="">20</option>
<option value="">21</option>
</select>
</div>
<div>
<p>手机号:</p>
<input type="text" class="changdu" placeholder="请填写手机号">
</div>
<div>
<p>电子邮箱:</p>
<input type="text" class="changdu" placeholder="请填写电子邮箱地址">
</div>
<div>
<p>备注:</p>
<textarea name="备注" id="beizhu" placeholder="请填写学生其他信息" ></textarea>
</div>
<p id="jiao">提交</p>
</main>
<footer>
<p class="jieshu">名字 ©100.com</p>
<p class="jieshu">*****有限公司</p>
</footer>
</body>
</html>