Blogger Information
Blog 3
fans 0
comment 0
visits 1170
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
合肥市南门小学五(三)班课程表
Hey!Man
Original
679 people have browsed it

  1. <table border="1" cellspacing="0" cellspading="5" width="90%" align="center">
  2. <caption>
  3. <h3>合肥市南门小学五(三)班课程表</h3>
  4. </caption>
  5. <thead>
  6. <tr bgcolor="lightyellow">
  7. <th>时间</th>
  8. <th>语文</th>
  9. <th>数学</th>
  10. <th>音乐</th>
  11. <th>体育</th>
  12. <th>英语</th>
  13. </tr>
  14. </thead>
  15. <tbody align="center">
  16. <tr>
  17. <th rowspan="3" bgcolor="lightblue">上午</th>
  18. <td>数学</td>
  19. <td>地理</td>
  20. <td>文化</td>
  21. <td>思想</td>
  22. <td>化学</td>
  23. </tr>
  24. <tr>
  25. <td>化学</td>
  26. <td>语文</td>
  27. <td>物理</td>
  28. <td>数学</td>
  29. <td>美术</td>
  30. </tr>
  31. <tr>
  32. <td>语文</td>
  33. <td>数学</td>
  34. <td>地理</td>
  35. <td>英语</td>
  36. <td>科学</td>
  37. </tr>
  38. </tbody>
  39. <tbody>
  40. <tr>
  41. <th colspan="6" bgcolor="red">中午休息</th>
  42. </tr>
  43. </tbody>
  44. <tbody align="center">
  45. <tr>
  46. <th rowspan="2">下午</th>
  47. <td>数学</td>
  48. <td>音乐</td>
  49. <td>语文</td>
  50. <td>英语</td>
  51. <td>美术</td>
  52. </tr>
  53. <tr>
  54. <td>物理</td>
  55. <td>英语</td>
  56. <td>语文</td>
  57. <td>化学</td>
  58. <td>音乐</td>
  59. </tr>
  60. </tbody>
  61. <tfoot>
  62. <tr bgcolor="lightgreen">
  63. <td>备注:</td>
  64. <td colspan="5">每天下午16:00-17:00,写完作业再回家</td>
  65. </tr>
  66. </tfoot>
  67. </table>

  1. <form action="" style="display:grid;gap: 0.5em" method="post">
  2. <fieldset> <!-- fieldset 表单框 -->
  3. <legend>必填项</legend> <!-- legend 表单提示 -->
  4. <div>
  5. <label for="username">账号:</label>
  6. <!-- autofocus 自动焦点 required 必填项 placeholder 提示用户填写信息-->
  7. <input type="text" id="username" autofocus required placeholder="必须是6-8位"/>
  8. </div>
  9. <div>
  10. <label for="password">密码:</label>
  11. <input type="password" id="password" required placeholder="必须是字母+数字 "/>
  12. </div>
  13. <div>
  14. <label for="email">邮箱:</label>
  15. <input type="email" id="email" id="email" required placeholder="demo@mail.com "/>
  16. </div>
  17. </fieldset>
  18. <div>
  19. <!-- 单选按钮:多选一 -->
  20. <label for="secret">性别:</label>
  21. <input type="radio" name="gender" value="male" id="male" /><label for="male"></label>
  22. <input type="radio" name="gender" value="female" id="female" /><label for="female"></label>
  23. <input type="radio" name="gender" value="secret" id="secret" checked /><label for="secret">保密</label>
  24. </div>
  25. <!-- 多选复选框 -->
  26. <!-- 因为允许同时提交多个值,所以name属性要写成数组格式 -->
  27. <div>
  28. <label>爱好:</label>
  29. <input type="checkbox" name="hobby[]" id="Programmer" checked /><label for="Programmer">编程</label>
  30. <input type="checkbox" name="hobby[]" id="Swim" /><label for="Swim">游泳</label>
  31. <input type="checkbox" name="hobby[]" id="read" checked /><label for="read">阅读</label>
  32. <input type="checkbox" name="hobby[]" id="music" checked /><label for="music">音乐</label>
  33. <input type="checkbox" name="hobby[]" id="Draw" /><label for="Draw">画画</label>
  34. </div>
  35. <div>
  36. <!-- 下拉列表 -->
  37. <select name="level" id="">
  38. <option value="1">铜牌会员</option>
  39. <option value="2" selected>银牌会员</option>
  40. <option value="3">金牌会员</option>
  41. <option value="4">钻石会员</option>
  42. </select>
  43. </div>
  44. <!-- datalist 相当于输入框+下拉列表 类似百度下拉框 -->
  45. <!-- input + select -->
  46. <div>
  47. <label for="">关键字:</label>
  48. <input type="search" name="search" id="" list="seo"/>
  49. <datalist id="seo">
  50. <option value="蜘蛛池">
  51. <option value="站群">
  52. <option value="快排">
  53. <option value="外链">
  54. <option value="内链">
  55. </datalist>
  56. </div>
  57. <div>
  58. <button type="submit">点我提交</button>
  59. </div>
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!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post