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>