Blogger Information
Blog 2
fans 0
comment 0
visits 902
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html基础:table入门
苏荣
Original
433 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  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>Document</title>
  8. </head>
  9. <body>
  10. <table border="1" width="90%" cellspacing="0">
  11. <caption>
  12. <h3>课程表</h3>
  13. </caption>
  14. <thead>
  15. <!-- tr:tablerow -->
  16. <tr bgcolor="lightcyan">
  17. <th>时间</th>
  18. <th>星期一</th>
  19. <th>星期二</th>
  20. <th>星期三</th>
  21. <th>星期四</th>
  22. <th>星期五</th>
  23. </tr>
  24. </thead>
  25. <tbody align="center">
  26. <tr>
  27. <td rowspan="3" bgcolor="lightskyblue">上午</td>
  28. <td>语文</td>
  29. <td>数学</td>
  30. <td>音乐</td>
  31. <td>体育</td>
  32. <td>英语</td>
  33. </tr>
  34. <tr>
  35. <td>语文</td>
  36. <td>数学</td>
  37. <td>音乐</td>
  38. <td>体育</td>
  39. <td>英语</td>
  40. </tr>
  41. <tr>
  42. <td>语文</td>
  43. <td>数学</td>
  44. <td>音乐</td>
  45. <td>体育</td>
  46. <td>英语</td>
  47. </tr>
  48. <tr bgcolor="#dedede">
  49. <td colspan="6">中午休息</td>
  50. </tr>
  51. <tr>
  52. <td rowspan="2" bgcolor="lightskyblue">下午</td>
  53. <td>语文</td>
  54. <td>数学</td>
  55. <td>音乐</td>
  56. <td>体育</td>
  57. <td>英语</td>
  58. </tr>
  59. <tr>
  60. <td>语文</td>
  61. <td>数学</td>
  62. <td>音乐</td>
  63. <td>体育</td>
  64. <td>英语</td>
  65. </tr>
  66. <tr bgcolor="lightgreen">
  67. <td>备注:</td>
  68. <td colspan="5">每天下午16:00-17:00,写完作业再回家</td>
  69. </tr>
  70. </tbody>
  71. </table>
  72. </body>
  73. </html>

Correcting teacher:天蓬老师天蓬老师

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