1234567891011121314 |
- <!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 属性 超链接地址 且是完整地址 -->
- <!-- target 属性 超链接打开方式 _blank 新窗口打开 _self(默认效果) 当前窗口打开 -->
- <a href="https://www.baidu.com" target="_blank">百度</a>
- </body>
- </html>
|