Computer Science, asked by bodduanand9945, 11 months ago

In html hyperlinks are created using the html ___ tag

Answers

Answered by hiteshkhannasweet
8
<a href>(anchor) tag
Answered by razaalicrj
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:

  1. href-Specifies the URL of the page the link goes to.
  2. Download-Specifies that the target will be downloaded when a user clicks on the hyperlink.
  3. Target-Specifies where to open the linked document.
  4. Type-Specifies the media type of the linked document.
Similar questions