Multiple choice general knowledge What is the correct HTML for creating a hyperlink? <a url="http://www.example.com">example.com</a> <a>http://www.example.com</a> <a name="http://www.example.com">example.com</a> <a href="http://www.example.com">example</a> Reveal answer Fill a bubble to check yourself D Correct answer Explanation The correct HTML element for creating a hyperlink is with the 'href' attribute specifying the destination URL. Option D correctly shows example. Options A and C incorrectly use 'url' and 'name' attributes which don't exist for hyperlinks, while B is missing the href attribute entirely.