How can i use bookmark tag. Tell me about bookmark tag | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can i use bookmark tag. Tell me about bookmark tag

tell me syntax of bookmark tag

16th Jun 2017, 3:06 AM
Vivek Kumar Maurya
Vivek Kumar Maurya - avatar
1 Answer
+ 3
You probably mean internal links: https://www.w3schools.com/html/html_links.asp (section "HTML Links - Create a Bookmark") First, you must have an element with an Id: <div id="mybookmark"> <p>I wanna jump into this paragraph.</p> </div> Then, in the same HTML page, you write an anchor tag, linking to "#" + the previous id: <a href="#mybookmark">Go there!</a>
16th Jun 2017, 4:58 AM
Álvaro