_Blank value
While the href
attribute defines the link destination, the target
attribute tells the browser where to open the linked document. For example, the link can lead users to a new window or tab, which is how it's most commonly used. To make it work, use the _blank
value and keep in mind that the target name should start with an underscore (_) character: <a href="URL" target="_blank">Link text</a>
.