Blogger Information
Blog 7
fans 0
comment 0
visits 2511
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
演示图片、链接、列表元素
追梦赤子
Original
526 people have browsed it

演示图片、链接、列表元素

  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. </div>
  12. <!--2. 链接-->
  13. <a href="https://www.php.cn/" target="_blank">php中文网</a>
  14. <!--3. 列表元素-->
  15. <!--3.1. 有序列表-->
  16. <ol>
  17. <li>item1</li>
  18. <li>item2</li>
  19. <li>item3</li>
  20. </ol>
  21. <!--3.2. 无序列表-->
  22. <ul>
  23. <li>item1</li>
  24. <li>item2</li>
  25. <li>item3</li>
  26. </ul>
  27. <!--3.3. 自定义列表-->
  28. <dl>
  29. <!--标题-->
  30. <dt>标题</dt>
  31. <!--内容描述-->
  32. <dd></dd>
  33. </dl>
  34. </body>
  35. </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