Thursday, February 21, 2019

How To Use HTML anchor link

HTML anchor link code. How to link in the same page in HTML.

Link to anchor on same page

<a href="#example">Example headline</a>

When pressing the above link the browser will jump to the heading below, with this code:
<h5><a id="example"></a>Example headline</h5>

Link to anchor on another page

<a href="../html-link.html#generator">HTML link code generator</a>

When pressing the link the browser will jump to the html-link page section that has this code:
<h2><a id="generator"></a>HTML link code generator</h2>

No comments:

Post a Comment

How to Hide Elements on Specific WordPress Pages

Find the post or page id. something like: .postid-1762 or .pageid-1762. Then add to your css : .postid-1762 #your-element { display :...