HTML入门笔记15-HTML中插入外部链接

来源:互联网 发布:ubuntu不支持exfat 编辑:程序博客网 时间:2024/06/05 14:52

       本篇学习HTML中链接标签,<href>表示超链接的意思,我们来演示一次,在demo文件中点击一个文字,然后跳转到百度首页的场景。

<!DOCTYPE html>        <html>            <head>          <title>              HTML插入图片        </title>              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />      </head>      <body>          <p><a href="https://www.baidu.com">百度首页</a></p>    </body>  </html>