ในการสร้างลิงก์บุ๊กมาร์กใน HTML คุณต้องสร้างบุ๊กมาร์กโดยใช้แอตทริบิวต์ชื่อแท็ก ตอนนี้ เพิ่มลิงก์ไปยังบุ๊กมาร์ก บุ๊กมาร์กเรียกอีกอย่างว่าจุดยึดที่มีชื่อ วิธีนี้มีประโยชน์มากในการพาผู้อ่านไปยังส่วนใดส่วนหนึ่งของหน้าเว็บ
แต่จำไว้เสมอว่าแอตทริบิวต์ชื่อแท็ก เลิกใช้แล้วใน HTML5 ห้ามใช้
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อสร้างลิงก์ที่คั่นหน้าใน 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>