Blogger Information
Blog 12
fans 0
comment 0
visits 6075
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML入门学习之图文链接列表知识小结与图文实战练习
天空
Original
397 people have browsed it

HTML入门之图片、链接、列表知识小结与图文练习

图片

  • 语法:<img src="static/image/bear.jpg" alt="Bear" />

    链接

  • 语法:<a href="https://www.php.cn">php.cn第19期直播班</a>

    列表

    无序列表

  • 语法:
  • <ul>

  • <li>item1</li>

  • <li>item2</li>

  • <li>item3</li>

  • </ul>

    有序列表

    -语法:
  • <dl>

  • <dt>地址</dt>

  • <dd>合肥市</dd>

  • <dt>邮箱</dt>

  • <dd>admin@php.cn</dd>

  • </dl>

    作业效果图

    图文链接列表作业效果

    作业代码

    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. <H1>动物篇</H1>
    11. <ul class="zoo" style="display: flex; list-style-type: style none">
    12. <li class="item">
    13. <a href="https://www.php.cn"><img src="static/image/bear.jpg" alt="可爱的小熊" /><br/> 可爱的小熊</a>
    14. </li>
    15. &nbsp;
    16. <li class="item">
    17. <a href="https://www.php.cn"><img src="static/image/rabbit.jpg" alt="肉肉的白兔" /><br/>酷酷的熊猫</a>
    18. </li>
    19. &nbsp;
    20. <li class="item">
    21. <a href="https://www.php.cn"><img src="static/image/peacock(1).jpg" alt="高傲的孔雀" /><br/>高傲的孔雀</a>
    22. </li>
    23. &nbsp;
    24. <li class="item">
    25. <a href="https://www.php.cn"><img src="static/image/cat.jpg" alt="萌萌的猫咪" /><br/>萌萌的猫咪</a>
    26. </li>
    27. &nbsp;
    28. <li class="item">
    29. <a href="https://www.php.cn"><img src="static/image/swan(1).jpg" alt="优雅的天鹅" /><br/>优雅的天鹅</a>
    30. </li>
    31. &nbsp;
    32. </ul>
    33. </body>
    34. </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