console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
margin: 0 0px;
background-color: #fdfde0;
}
</style>
</head>
<body>
<table border="1">
<tr>
<td rowspan="4">上午</td>
<td>星期一</td>
<td>星期二</td>
<td>星期三</td>
<td>星期四</td>
<td>星期五</td>
</tr>
<tr>
<td>体育</td>
<td>历史</td>
<td>物理</td>
<td colspan="2">数学</td>
</tr>
<tr>
<td>英语</td>
<td>语文</td>
<td>数学</td>
<td>化学</td>
<td>地理</td>
</tr>
<tr>
<td>数学</td>
<td colspan="2">语文</td>
<td>地理</td>
<td>历史</td>
</tr>
<tr>
<td rowspan="3">下午</td>
<td>数学</td>
<td>生物</td>
<td>语文</td>
<td>化学</td>
<td>物理</td>
</tr>
<tr>
<td>数学</td>
<td>语文</td>
<td colspan="2">英语</td>
<td>化学</td>
</tr>
<tr>
<td>体育</td>
<td>历史</td>
<td>生物</td>
<td>化学</td>
<td>数学</td>
</tr>
</table>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>注册信息</title>
<style>
form>table{
widows: 400px;
padding: 20px;
margin:25px;
}
.label{
widows: 40px;
}
input[type="text"]{
width: 100%;
margin: 20px 0;
padding: 2px;
}
</style>
</head>
<body>
<div>
<from name="use_register" action="/" method="get" enctype="text/plain" id="usename">
<table cellpadding="0" cellspacing="0">
<tr align="center">
<td colspan="2"><strong>用户信息</strong></td>
</tr>
<tr>
<td class="label">用户名:</td>
<td><input type="text" name="username" id="username"></td>
</tr>
<tr>
<td class="label">性别:</td>
<td>
<table>
<tr>
<td>
<input type="radio" name="sex" id="sex-male" value="value">
男
</td>
<td>
<input type="radio" name="sex" id="sex-female" value="value">
女
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="" id=""></td>
</tr>
<tr>
<td>确认密码:</td>
<td><input type="password" name="" id=""></td>
</tr>
<tr>
<td>电子邮箱:</td>
<td><input type="password" name="twelve" id="twelve-qq.com"></td>
</tr>
<table>
<form action="file./" method="get" id="se" name="se">
<td><button name="name" value="value" type="submit">提交</button></td>
</from>
<td><input type="reset" value="重填" οnclick="return confirmReset()" class="buttonstyle" /></td>
<script>
function confirmReset(){
var clickresult = false;
clickresult =window.confirm("点击重填后所有信息都将被清空。\n你确认重填吗?");
return clickresult;
}
</script>
</table>
</table>
</from>
</div>
</body>
</html>