Multiple choice technology web technology What is the correct HTML for creating a hyperlink? <a url="http://www.w3schools.com">W3Schools.com</a> <a>http://www.w3schools.com</a> <a name="http://www.w3schools.com">W3Schools.com</a> <a href="http://www.w3schools.com">W3Schools</a> Reveal answer Fill a bubble to check yourself D Correct answer Explanation The tag with the href attribute is the correct syntax for creating hyperlinks. The href attribute specifies the destination URL. Options A and C use incorrect attributes (url and name), while option B is missing the href attribute entirely.