Programming Examples
Create a hyperlink in html which when clicked links to www.google.com in a new window
Create a hyperlink in html which when clicked links to www.google.com in a new window.
Solution
<a href="http://www.google.com" target="_blank">Open Google Website</a>
Output/ Explanation: