Blogger Information
Blog 4
fans 0
comment 0
visits 2050
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
简单实现列表div>ul>li>a与课程表格table制作
画骨
Original
583 people have browsed it

简单实现功能

1.图片列表

2.课程表

3.代码

  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>图文列表</title>
  8. <style>
  9. .div{ width: 1200px;margin: 0 auto;}
  10. .nav{display: flex; text-align: center;padding-left: 5px;}
  11. .lst{list-style-type:none;padding-left: 5px;}
  12. </style>
  13. </head>
  14. <body>
  15. <div class="div">
  16. <h2>图片列表</h2>
  17. <ul class="nav">
  18. <li class="lst"><img src="/static/images/1.jpg" alt="师姐很漂亮" srcset="" style="width:200px"><br /><a href="http://www.php.cn" target="_blank" rel="noopener noreferrer">师姐很漂亮</a></li>
  19. <li class="lst"><img src="/static/images/2.jpg" alt="师妹也很漂亮" srcset=""style="width:200px"><br /><a href="http://www.php.cn" target="_blank" rel="noopener noreferrer">师妹也很漂亮</a></li>
  20. <li class="lst"><img src="/static/images/3.jpg" alt="班花更漂亮" srcset=""style="width:200px"><br /><a href="http://www.php.cn" target="_blank" rel="noopener noreferrer">班花更漂亮</a></li>
  21. <li class="lst"><img src="/static/images/7.jpg" alt="校花排名榜首" srcset=""style="width:200px"><br /><a href="http://www.php.cn" target="_blank" rel="noopener noreferrer">校花排名榜首</a></li>
  22. </ul>
  23. </div>
  24. <div class="biaoge">
  25. <h2>课程表</h2>
  26. <table border="1" >
  27. <caption>美女舞蹈培训班课程表</caption>
  28. <thead>
  29. <tr bgcolor="#78ccd">
  30. <th></th>
  31. <th>星期一</th>
  32. <th>星期二</th>
  33. <th>星期三</th>
  34. <th>星期四</th>
  35. <th>星期五</th>
  36. <th>星期六</th>
  37. <th>星期日</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. <tr>
  42. <th rowspan="2" bgcolor="afb4db">上午</th>
  43. <td>文化课</td>
  44. <td>文化课</td>
  45. <td>文化课</td>
  46. <td>文化课</td>
  47. <td>文化课</td>
  48. <td>休息</td>
  49. <td>表演</td>
  50. </tr>
  51. <tr>
  52. <td>广场舞</td>
  53. <td>钢管舞</td>
  54. <td>现代舞</td>
  55. <td>交际舞</td>
  56. <td>鬼步舞</td>
  57. <td>休息</td>
  58. <td>休息</td>
  59. </tr>
  60. <tr align="center" bgcolor="#78ccd">
  61. <td colspan="8">中午休息(12:00-14:00)</td>
  62. </tr>
  63. <tr>
  64. <th rowspan="2" bgcolor="afb4db">下午</th>
  65. <td>交际舞</td>
  66. <td>现代舞</td>
  67. <td>现代舞</td>
  68. <td>文化课</td>
  69. <td>钢管舞</td>
  70. <td>休息</td>
  71. <td>表演</td>
  72. </tr>
  73. <tr>
  74. <td>广场舞</td>
  75. <td>钢管舞</td>
  76. <td>鬼步舞</td>
  77. <td>现代舞</td>
  78. <td>钢管舞</td>
  79. <td>休息</td>
  80. <td>休息</td>
  81. </tr>
  82. </tbody>
  83. <tfoot>
  84. <tr align="center" bgcolor="#78ccd">
  85. <td colspan="8">晚上休息</td>
  86. </tr>
  87. </tfoot>
  88. </table>
  89. </div>
  90. </body>
  91. </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