博客列表 >页面图文语义化解决方案

页面图文语义化解决方案

追梦赤子
追梦赤子原创
2023年01月13日 23:46:39303浏览

页面的图文语义化解决方案

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>图文语义化解决方案</title>
  6. </head>
  7. <body>
  8. <!--1. 传统图文-->
  9. <div>
  10. <img src="https://img.php.cn/upload/course/000/000/068/6396fa6140e14800.png" alt="这是图片"/>
  11. <p>hello,world</p>
  12. </div>
  13. <!--2. 语义化图文 figure-->
  14. <figure>
  15. <!--图片-->
  16. <img src="https://img.php.cn/upload/course/000/000/068/6396fa6140e14800.png" alt="xxxxx">
  17. <!--文字-->
  18. <figcaption>
  19. 图片内容介绍
  20. </figcaption>
  21. </figure>
  22. </body>
  23. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议