| 123456789101112131415 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!-- a标签 用于定义链接 -->
- <!-- href属性 链接的目标地址 例如:https://www.baidu.com -->
- <!-- target属性 链接打开的方式 例如:_blank 表示在新窗口打开 -->
- <a href="https://www.baidu.com/" target="_blank" >百度</a>
- </body>
- </html>
|