标签.html 680 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <!--
  9. a 超链接
  10. href 属性 跳转链接 请求地址
  11. target 打开窗 位置
  12. _blank新窗口
  13. _self 当前窗口
  14. -->
  15. <a href="https://www.baidu.com" target="_self">百度一下</a>
  16. <hr>
  17. <!--
  18. 图片标签 img
  19. src属性:图片的地址。
  20. 相对路径:
  21. 上一级目录 ../ 当前目录 ./ 省略
  22. 绝对路径:
  23. 盘符出发:
  24. alt属性:
  25. 在图片不显示的时候描述
  26. -->
  27. <img src="../img/img037.png" alt="美女">
  28. </body>
  29. </html>