HTML Links Explain
HTML links are defined with the <a> tag.
The link's destination is specified in the href attribute.
Attributes are used to provide additional information about HTML elements.
Html Code:
<!DOCTYPE html>
<html>
<body>
<a href="http://www.Daddyfile.com">This is a link</a>
</body>
</html>
Post a Comment