Blogger Information
Blog 12
fans 0
comment 2
visits 6211
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
10.17table作业
白鸽
Original
576 people have browsed it

10.17table作业

课程表

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  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. <title>table</title>
  8. <style>
  9. table{ border-collapse: collapse;}
  10. th{height: 70px;background: #9F9F9F}
  11. th,td{border:solid 1px #000000;
  12. margin: 0;padding: 10px;}
  13. .h70{height: 70px;}
  14. </style>
  15. </head>
  16. <body>
  17. <table width="100%" border="1">
  18. <caption>
  19. <h3>课程表</h3>
  20. </caption>
  21. <thead>
  22. <tr>
  23. <th>时间\星期</th>
  24. <th>星期一</th>
  25. <th>星期二</th>
  26. <th>星期三</th>
  27. <th>星期四</th>
  28. <th>星期五</th>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <tr>
  33. <td>8:00-9:00</td>
  34. <td rowspan="2">语文</td>
  35. <td>数学</td>
  36. <td>历史</td>
  37. <td>语文</td>
  38. <td>英语</td>
  39. </tr>
  40. <tr>
  41. <td>9:00-10:00</td>
  42. <td rowspan="2">英语</td>
  43. <td>地理</td>
  44. <td>数学</td>
  45. <td>政治</td>
  46. </tr>
  47. <tr>
  48. <td>10:00-11:00</td>
  49. <td>数学</td>
  50. <td>物理</td>
  51. <td>物理</td>
  52. <td>实验</td>
  53. </tr>
  54. <tr>
  55. <td>11:00-12:00</td>
  56. <td>英语</td>
  57. <td>语文</td>
  58. <td>化学</td>
  59. <td>化学</td>
  60. <td>劳动</td>
  61. </tr>
  62. <tr>
  63. <td class="h70">12:00-14:00</td>
  64. <td colspan="5">午休</td>
  65. </tr>
  66. <tr>
  67. <td>14:00-15:00</td>
  68. <td>生物</td>
  69. <td>音乐</td>
  70. <td rowspan="2">数学</td>
  71. <td>地理</td>
  72. <td>体育</td>
  73. </tr>
  74. <tr>
  75. <td>15:00-16:00</td>
  76. <td>历史</td>
  77. <td>体育</td>
  78. <td>历史</td>
  79. <td>美术</td>
  80. </tr>
  81. <tr>
  82. <td>16:00-17:00</td>
  83. <td>地理</td>
  84. <td>物理</td>
  85. <td>生物</td>
  86. <td>英语</td>
  87. <td>物理</td>
  88. </tr>
  89. <tr>
  90. <td>17:00</td>
  91. <td colspan="5">放学</td>
  92. </tr>
  93. </tbody>
  94. </table>
  95. </body>
  96. </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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!