博客列表 >HTML课程表练习

HTML课程表练习

Blackeye
Blackeye原创
2022年03月24日 16:57:29423浏览

使用图片,链接,列表,写一个图文列表
view link

  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>list</title>
  8. </head>
  9. <body>
  10. <ul>
  11. <li><a href="#"><img src="https://dave-xi.github.io/image/1.jpg" alt="testimage" style="width: 300px; height: 200px;"></a></li>
  12. <li><a href="#"><img src="https://dave-xi.github.io/image/1.jpg" alt="testimage" style="width: 300px; height: 200px;"></a></li>
  13. <li><a href="#"><img src="https://dave-xi.github.io/image/1.jpg" alt="testimage" style="width: 300px; height: 200px;"></a></li>
  14. </ul>
  15. </body>
  16. </html>

课程表
view link

  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>Dave—小学课程表</title>
  8. </head>
  9. <body>
  10. <table border="1" width="450" cellspacing="0" cellpadding="5" align="center">
  11. <!-- 表格标题 -->
  12. <caption><h3>合肥市南门小学六年级课程表</h3></caption>
  13. <!-- 表格头部 -->
  14. <thead style="background-color: #e5e5e5;">
  15. <tr>
  16. <th>时间</th>
  17. <th>周一</th>
  18. <th>周二</th>
  19. <th>周三</th>
  20. <th>周四</th>
  21. <th>周五</th>
  22. </tr>
  23. </thead>
  24. <!-- 表格内容 -->
  25. <tbody>
  26. <!-- row_上午_1 -->
  27. <tr>
  28. <th rowspan="4" bgcolor="#e7f7f7">上午</th>
  29. <th>数学</th>
  30. <th>语文</th>
  31. <th>语文</th>
  32. <th>英语</th>
  33. <th>体育</th>
  34. </tr>
  35. <!-- row_上午_2 -->
  36. <tr>
  37. <th>语文</th>
  38. <th>法制</th>
  39. <th>科学</th>
  40. <th>数学</th>
  41. <th>数学</th>
  42. </tr>
  43. <!-- row_上午_3 -->
  44. <tr>
  45. <th>音乐</th>
  46. <th>语文</th>
  47. <th>英语</th>
  48. <th>电脑</th>
  49. <th>数学</th>
  50. </tr>
  51. <!-- row_上午_4 -->
  52. <tr>
  53. <th>数学</th>
  54. <th>数学</th>
  55. <th>语文</th>
  56. <th>语文</th>
  57. <th>音乐</th>
  58. </tr>
  59. <!-- 中午休息 -->
  60. <tr>
  61. <th colspan="6">中午休息</th>
  62. </tr>
  63. <!-- row_下午_1 -->
  64. <tr>
  65. <th rowspan="3" bgcolor="#e7f7f7">下午</th>
  66. <th>数学</th>
  67. <th>语文</th>
  68. <th>英语</th>
  69. <th>数学</th>
  70. <th>数学</th>
  71. </tr>
  72. <!-- row_下午_2 -->
  73. <tr>
  74. <th>数学</th>
  75. <th>数学</th>
  76. <th>数学</th>
  77. <th>数学</th>
  78. <th>数学</th>
  79. </tr>
  80. <!-- row_下午_3 -->
  81. <tr>
  82. <th>英语</th>
  83. <th>数学</th>
  84. <th>数学</th>
  85. <th>数学</th>
  86. <th>数学</th>
  87. </tr>
  88. </tbody>
  89. <!-- 表格底部 -->
  90. <tfoot style="background-color: #e5e5e5;">
  91. <tr>
  92. <th>备注</th>
  93. <th colspan="5">每天下午15:30-17:30在校写完作业才可回家</th>
  94. </tr>
  95. </tfoot>
  96. </table>
  97. </body>
  98. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议