Multiple choice technology web technology What is the correct HTML for creating a hyperlink? <a url="http://www.google.co.in/">Google</a> <a href="http://www.google.co.in/">Google</a> <a>http://www.google.co.in/</a> <a name="http://www.google.co.in/">Google</a> Reveal answer Fill a bubble to check yourself B Correct answer Explanation HTML hyperlinks use the tag with the href attribute specifying the destination URL. Option B shows the correct syntax: Google. Option A incorrectly uses 'url' instead of 'href', Option C is missing the href attribute entirely, and Option D uses 'name' which is for anchor points, not links.