课程表
<!DOCTYPE html><html lang="zh-cn"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>课程表</title></head><body> <table border="1" width="400"> <caption>课程表</caption> <thead> <tr> <th>星期一</th> <th>星期二</th> <th>星期三</th> <th>星期四</th> <th>星期五</th> </tr> </thead> <tbody> <tr> <td rowspan="3">语文</td> <td colspan="2">数学</td> <td>体育</td> <td>英语</td> <!-- <td>美术</td> --> </tr> <tr> <!-- <td>x</td> --> <td>英语</td> <td>体育</td> <td>语文</td> <td>数学</td> </tr> <tr> <!-- <td>x</td> --> <td>x</td> <td>x</td> <td>x</td> <td>x</td> </tr> <tr> <td rowspan="2">体育</td> <td>x</td> <td>x</td> <td>x</td> <td>x</td> </tr> <tr> <!-- <td>x</td> --> <td>x</td> <td>x</td> <td>x</td> <td>x</td> </tr> <tr> <td>数学</td> <td>x</td> <td>x</td> <td>x</td> <td>x</td> </tr> </tbody> </table></body></html>
注册表单
<!DOCTYPE html><html lang="zh-cn"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <form action="zc.php" method="post"> <fieldset> <legend>用户注册</legend> <div class="username"> <label for="username">用户名:</label> <input type="text" value="" id="username" placeholder="请输入用户名" required autofocus> </div> <div class="psw"> <label for="psw">密码:</label> <input type="password" name="psw" id="psw" placeholder="请输入密码"> </div> <div class="rpsw"> <label for="rpsw">确认密码:</label> <input type="password" name="rpsw" id="rpsw" placeholder="请确认密码"> </div> <div class="sex"> <label for="sex">性别:</label> <input type="radio" name="sex" id="boy" checked><label for="boy">男</label> <input type="radio" name="sex" id="girl"><label for="girl">女</label> </div> <div class="time"> <label for="time">出生日期:</label> <input type="date" name="birthday" id="birthday" value="1990-01-01" min="1949-10-01" max="2003-01-01" /> </div> <button>注册</button> </fieldset> </form></body></html>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!