Question:

What is the correct HTML for making a hyperlink?

Show Hint

Always remember that the href attribute is used to define the destination URL for a hyperlink.

Updated On: Jun 16, 2025
  • <a href="http://abc.com">abc</a>

  • <a name="http://abc.com">abc</a>

  •  <http://abc.com>

  • url="http://abc.com">

Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

In HTML, a hyperlink is created using the <a> tag with the href attribute, which specifies the URL the link points to. The text between the opening and closing <a> tags is what appears as clickable.

Was this answer helpful?
0
0