Multiple choice technology web technology What is the correct HTML for creating a hyperlink <a url="http://www.w3schools.com">W3Schools.com</a> <a href="http://www.w3schools.com">W3Schools</a> <a name="http://www.w3schools.com">W3Schools.com</a> <a>http://www.w3schools.com</a> Reveal answer Fill a bubble to check yourself B Correct answer Explanation The tag with the href attribute creates hyperlinks in HTML. The correct syntax is link text. Option A incorrectly uses 'url' instead of 'href'. Option C incorrectly uses 'name' which is for anchors, not links. Option D is missing the href attribute entirely.