In html hyperlinks are created using the html ___ tag
Answers
Answered by
8
<a href>(anchor) tag
Answered by
5
Answer:
<a>
Explanation:
You can add link to the HTML code easily by using the <a> tag.
In HTML 4.01, the <a> tag could be either a hyperlink or an anchor. In HTML5, the <a> tag is always a hyperlink, but if it has no href attribute, it is only a placeholder for a hyperlink.
HTML5 has some new attributes, and some HTML 4.01 attributes are no longer supported.
Generally it has the following attributes:
- href-Specifies the URL of the page the link goes to.
- Download-Specifies that the target will be downloaded when a user clicks on the hyperlink.
- Target-Specifies where to open the linked document.
- Type-Specifies the media type of the linked document.
Similar questions