Question:easy

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

The Correct Option is C

Solution and Explanation

A hyperlink a user can click is built from the anchor element. Its form is $\texttt{<a href="...">label</a>}$, and the browser turns the label into a clickable link.

The $\texttt{<link>}$ element is different: it sits in the document head and attaches resources such as CSS, so it is not a visible clickable link. The tags $\texttt{<hyperlink>}$ and $\texttt{<hlink>}$ do not exist in HTML.

Hence the anchor tag is the answer.

\[\boxed{\texttt{<a>}}\]
Was this answer helpful?
0