Multiple choice technology web technology

What is the correct HTML for creating a hyperlink?

Reveal answer Fill a bubble to check yourself
A Correct answer
AI explanation

The correct HTML syntax for a hyperlink uses the anchor tag with the href attribute pointing to the target URL, wrapping the clickable link text: <a href="...">text</a>. Attributes like url or name are not used to specify the link destination — href is the required attribute for that.