12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- <!--
- a 超链接
- href 属性 跳转链接 请求地址
- target 打开窗 位置
- _blank新窗口
- _self 当前窗口
- -->
- <a href="https://www.baidu.com" target="_self">百度一下</a>
- <hr>
- <!--
- 图片标签 img
- src属性:图片的地址。
- 相对路径:
- 上一级目录 ../ 当前目录 ./ 省略
- 绝对路径:
- 盘符出发:
- alt属性:
- 在图片不显示的时候描述
- -->
- <img src="../img/img037.png" alt="美女">
- </body>
- </html>
|