Open link in a new browser window
Description:
How to make a link to open in a new browser window.
Code:
<html>
<body>
<a href="http://www.google.com/" target="_blank">Click here
to open Google in a new browser window</a>
</body>
</html>
Play with the code:
See working example:
Explanation:
To make a link to in a new browser window, use the property target of the <A> tag and set its value to _blank.
See Also:
HTML: Html, Body, A, P
|