.png)
Definition
A hyperlink in HTML is a clickable link that connects one webpage to another webpage, file, image, email address, or section of the same page. Hyperlinks are created using the <a> (anchor) tag.
Syntax
<a href="URL">Link Text</a>
Example
<!DOCTYPE html>
<html>
<body>
<a href="https://www.google.com">Visit Google</a>
</body>
</html>
0 Comments