Blogger Information
Blog 28
fans 0
comment 0
visits 12956
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
课程表作业
手机用户1594223549
Original
377 people have browsed it

一.代码

  1. <!DOCTYPE html>
  2. <html lang="zh-CH">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel="stylesheet" href="css/cart.css" />
  8. <title>课程表</title>
  9. </head>
  10. <body>
  11. <table border="2">
  12. <!-- 标题 -->
  13. <caption>
  14. <h3>课程表</h3>
  15. </caption>
  16. <!-- 表头 -->
  17. <thead>
  18. <tr>
  19. <th>时间</th>
  20. <th>星期一</th>
  21. <th>星期二</th>
  22. <th>星期三</th>
  23. <th>星期四</th>
  24. <th>星期五</th>
  25. </tr>
  26. </thead>
  27. <!-- 表体 -->
  28. <tbody>
  29. <tr>
  30. <td>8:00-9:00</td>
  31. <td rowspan="2">语文</td>
  32. <td>数学</td>
  33. <td>历史</td>
  34. <td>地理</td>
  35. <td>化学</td>
  36. </tr>
  37. <tr>
  38. <td>9:10-10:00</td>
  39. <!-- <td>语文</td> -->
  40. <td>化学</td>
  41. <td>地理</td>
  42. <td>历史</td>
  43. <td>政治</td>
  44. </tr>
  45. <tr>
  46. <td>10:10-11:00</td>
  47. <td>数学</td>
  48. <td>地理</td>
  49. <td>化学</td>
  50. <td>历史</td>
  51. <td>英语</td>
  52. </tr>
  53. <tr>
  54. <td>11:10-12:00</td>
  55. <td>语文</td>
  56. <td>数学</td>
  57. <td>地理</td>
  58. <td>化学</td>
  59. <td>体育</td>
  60. </tr>
  61. <tr>
  62. <td>12:30-14:00</td>
  63. <td colspan="5">午休</td>
  64. </tr>
  65. <tr>
  66. <td>14:00-15:00</td>
  67. <td>化学</td>
  68. <td>数学</td>
  69. <td>语文</td>
  70. <td>英语</td>
  71. <td>体育</td>
  72. </tr>
  73. <tr>
  74. <td>15:10-16:00</td>
  75. <td>语文</td>
  76. <td>英语</td>
  77. <td>数学</td>
  78. <td>体育</td>
  79. <td>地理</td>
  80. </tr>
  81. <tr>
  82. <td>16:10-17:00</td>
  83. <td>物理</td>
  84. <td>体育</td>
  85. <td>数学</td>
  86. <td>政治</td>
  87. <td>英语</td>
  88. </tr>
  89. </tbody>
  90. <!-- 表尾 -->
  91. <tfoot>
  92. <tr>
  93. <th>17:00</th>
  94. <th colspan="5">放学</th>
  95. </tr>
  96. </tfoot>
  97. </table>
  98. </body>
  99. </html>

二.结果

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
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