HTML links function as hyperlinks, enabling you to navigate to other documents with a click. When you hover your cursor over a link, it changes into a small hand symbol.
Note: A link is not restricted to text. It can be an image or any other HTML element! |
The <a> tag in HTML is used to create a hyperlink, and it is structured as follows:
<a href=”url“>link text</a> |
The href attribute of the <a>
element is crucial, as it specifies the destination of the link.
The visible portion to users is the link text.
By clicking on this text, users are directed to the designated URL.
<a href=”https://code7school.com/”>Visit code7school.com!</a> |