xxxxxxxxxx
Place that complete opening <a> tag from above before the text or object you want to link to, and add a closing </a> tag after.
Doing this sets the location of link. This is what your code should look like now:
<a id="INSERT_YOUR_OBJECT_NAME_HERE">The object you want to link to.</a>
xxxxxxxxxx
Create the hyperlink that'll take you to that text or object.
Now, go to the part of the post you'd like to have the hyperlink in. You'll need to add a typical hyperlink HTML markup, but in the part where you'd typically include a URL, you'll include the pound symbol (#) then the name of the object you're linking to. Here's what it looks like:
<a href="#INSERT_YOUR_OBJECT_NAME_HERE">Click here to see the content below.</a>
xxxxxxxxxx
<a href="#anchor-name">Jump to the part of the page with the “anchor-name” id </a>
xxxxxxxxxx
<a href="https://en.wikipedia.org/wiki/Main_Page#wikipedia">Go to the main page of Wikipedia .</a>
xxxxxxxxxx
<a href="/learn-html/html-links.html#html_links">Go to the HTML Links in our website.</a>