With HTML, easily add page links to an HTML page. Link contact us, about, home or any other external website page using the page links, which gets added inside an HTML document. To make page links in an HTML page, use the <a> and </a> tags, which are the tags used to define the links.
The <a> tag indicates where the link starts and the </a> tag indicates where it ends. Whatever text gets added inside these tags, will work as a link. Add the URL for the link in the <a href=” ”>. Just keep in mind that you should use the <a>…</a> tags inside <body>…</body> tags.
Example
You can try the following code to make page links in an HTML page:
<!DOCTYPE html> <html> <head> <title>HTML Links</title> </head> <body> <h1>Reach us here</h1> <a href="https://www.tutorialspoint.com/about/contact_us.htm">Contact</a> </body> </html>