HTML Links
HTML Links
HTML links are defined with the <a> tag.
Note - Link address is specified in the "href" attribute.
Example -
<!DOCTYPE html>
<html>
<body>
<a href="https://www.w3schools.com">This is a link</a>
</body>
</html>
Ouput -
This is a HTML link