Question:

Which tag is used to create a hyperlink in an HTML document?

Show Hint

It is the shortest tag, a single letter, paired with an href attribute.
Updated On: Jul 2, 2026
  • <hyperlink>
  • <link>
  • <a>
  • <hlink>
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Step 1: In HTML, a clickable hyperlink is created with the anchor element.

Step 2: The anchor tag is written as <a href="url">text</a>, where the href attribute holds the destination.

Step 3: The <link> tag exists but only links external resources like stylesheets in the head, not clickable page links. <hyperlink> and <hlink> are not valid HTML tags.

Step 4: So the correct tag is <a>.
Was this answer helpful?
0
0