如何在HTML中创建书签链接?


本文向大家介绍如何在HTML中创建书签链接?,包括了如何在HTML中创建书签链接?的使用技巧和注意事项,需要的朋友参考一下

要使用HTML创建书签链接,您需要使用<a>标记名称属性创建书签。现在,添加到书签的链接。书签也称为命名锚。这对于将读者带到网页的特定部分非常有用。

只要记住HTML5中不推荐使用的<a>标记名称属性。不使用。

示例

您可以尝试运行以下代码在HTML中创建书签链接。

<html>
   <head>
      <title>HTML Bookmark Link</title>
   </head>
   <body>
      <h1>Tutorials</h1>
      <p>
         <a href="#z">Learn about Scripting Languages</a>
      </p>
      <h2>Programming</h2>
      <p>Here are the tutorials on Programming.</p>
      <h2>Mobile</h2>
      <p>Here are the tutorials on App Development</p>
      <h2>Design</h2>
      <p>Here are the tutorials on Website Designing</p>
      <h2>Databases</h2>
      <p>Here are the tutorials on Databases.</p>
      <h2>Networking</h2>
      <p>Here are the tutorials on Networking</p>
      <h2>Java Technologies</h2>
      <p>Here are the tutorials on Java Technologies.</p>
      <h2>Digital Marketing</h2>
      <p>Here are the tutorials on Digital Marketing.</p>
      <h2>
         <a name="z">Scripting Languages</a>
      </h2>
      <p>Here are the tutorials on Scripting Languages.</p>
   </body>
</html>