HTML Hyperlink

By Tony 2023.3.3


Hyperlink is one of the most important element on a webpage. Users access different websites around the world using hyperlinks. This article will tell you how to add a link to your website.

A link

Here is some code of a link:

<a href="https://google.com">Google</a>


We typed the <a> anchor tags and used the "href" attribute to make the text inside a clickable link. It tells browser where to go when user clicks on the link.
These are what you can type in the href attribute:

To learn more, you can try it yourself, watch video tutorials, or visit our reference.