Multiple choice technology web technology What is the correct HTML for creating a hyperlink? <a href="http://www.w3schools.com">W3Schools</a> <a>http://www.w3schools.com</a> <a name="http://www.w3schools.com">W3Schools.com</a> <a url="http://www.w3schools.com">W3Schools.com</a> Reveal answer Fill a bubble to check yourself A Correct answer Explanation HTML hyperlinks use the tag with an href attribute. The href attribute specifies the destination URL. Option B lacks the href attribute. Option C uses name instead of href. Option D incorrectly uses 'url' instead of 'href'.