博客列表 >HHTML5的图片列表与表格小结

HHTML5的图片列表与表格小结

Breeze blue sea
Breeze blue sea原创
2022年03月18日 17:05:55474浏览

图片列表

代码:

  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>3.17学习</title>
  8. <style type="text/css">
  9. a {text-decoration: none;}
  10. li { list-style: none;float: left;}
  11. img { align-items: center;}
  12. </style>
  13. </head>
  14. <body>
  15. <div class="nav">
  16. <ui class="menu">
  17. <li><a href="https://www.php.cn/course/25.html"><img src="https://img.php.cn/upload/course/000/000/001/6221dba306f53195.png" alt="php"></img><p>php完全自学手册</p></a></li>
  18. <li><a href="https://www.php.cn/course/26.html"><img src="https://img.php.cn/upload/course/000/000/068/6221dcb26d3d0122.png" alt=""></img><p>JavaScript中文参考</p></a></li>
  19. <li><a href="https://www.php.cn/course/27.html"><img src="https://img.php.cn/upload/course/000/000/068/6221dcd6039fa852.png" alt=""></img><p>HTML 开发手册</p></a></li>
  20. <li><a href="https://www.php.cn/course/1061.html"><img src="https://img.php.cn/upload/course/000/000/068/6221dcf989dc5296.png" alt=""></img><p>Laravel 5.8 中文文档</p></a></li>
  21. </ui>
  22. </div>
  23. </body>
  24. </html>

效果图

表格

代码:

  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>表格</title>
  8. </head>
  9. <body>
  10. <table class="xx" border="1px">
  11. <caption>课程表</caption>
  12. <thead>
  13. <tr>
  14. <th></th>
  15. <th>星期一</th>
  16. <th>星期二</th>
  17. <th>星期三</th>
  18. <th>星期四</th>
  19. <th>星期五</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr>
  24. <th>第一节</th>
  25. <th>数学</th>
  26. <th>英语</th>
  27. <th>体育</th>
  28. <th>语文</th>
  29. <th>生物</th>
  30. </tr>
  31. <tr>
  32. <th>第二节</th>
  33. <th>语文</th>
  34. <th>数学</th>
  35. <th>语文</th>
  36. <th>生物</th>
  37. <th>数学</th>
  38. </tr>
  39. <tr>
  40. <th>第三节</th>
  41. <th>语文</th>
  42. <th>语文</th>
  43. <th>音乐</th>
  44. <th>美术</th>
  45. <th>数学</th>
  46. </tr>
  47. <tr>
  48. <th>第四节</th>
  49. <th>体育</th>
  50. <th>数学</th>
  51. <th>英语</th>
  52. <th>英语</th>
  53. <th>语文</th>
  54. </tr>
  55. </tbody>
  56. <tfoot>
  57. <tr>
  58. <th>午休</th>
  59. <th colspan="5"></th>
  60. </tr>
  61. </tfoot>
  62. </table>
  63. </body>
  64. </html>

效果图

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议