Answers for "link within a page html"

2

htlm link

<a href="https://www.google.com/">Visit googel.com!</a>
Posted by: Guest on October-17-2020
1

link to external site html

<a href="https://www.example.com">This is a link</a>
Posted by: Guest on August-19-2020
7

link to section on page html

<!-- #top is the ID of the div where u wanna link to -->
<a href="#top">Go back to the top!</a>

<div id="top"></div>
Posted by: Guest on June-19-2020

Browse Popular Code Answers by Language