HTML Links Code For Website - Learn About Website | DaddyFile

0

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>


Html Code Result:

This is a link

Post a Comment

 
Top