MCQ
Which is the correct syntax to create a hyperlink in HTML?
Unit-3 Programming Fundamentals
A <a href="page.html">Click</a>
B <link url="page.html">Click</link>
C <a link="page.html">Click</a>
D <href>Click</href>
Explanation

The anchor tag uses href to specify the destination URL, and the text is written between <a> and </a>.