The target
attribute in
<a>
<area>
<base>
<form>
<element target="_blank|_self|_parent|_top|framename"\>
_blank
: This is used to open the link in a new window.
_self
: This is the default value. It is used to open the link in the same window.
_top
: This is used to open the document linked in the full body.
_parent
: This is used to open the link in the parent frameset.
framename
: The document is opened in the specific frame name.
The HTML code provided below demonstrates how to use the target
attribute:
The link is opened in the new window because the target attribute is set to _blank
. We can also set the parameters according to our own choice.