Answers for "html anchor in a page"

0

html anchor tag

// <a> tag (Anchor tag) is used to direct you to another
// site. If the target is unpecified it uses the same tab
// and if you specifie "_black" it opens a new tab

<a href="https://www.example.com/" target="_blank"> Text </a>
Posted by: Guest on April-15-2022
0

how to add an html anchor

<h2 id="Lorem_Ipsum">Lorem Ipsum</h2> <!--The anchor-->
<a href="#Lorem_Ipsum">top</a> <!--Linking to the anchor-->
Posted by: Guest on September-23-2020

Browse Popular Code Answers by Language