+ 8
Using special value "_self", "_parent" or "top":
<< Target:
Specifies where to display the linked URL. It is a name of, or keyword for, a browsing context: a tab, window, or <iframe>. The following keywords have special meanings:
_self: Load the URL into the same browsing context as the current one. This is the default behavior.
_blank: Load the URL into a new browsing context. This is usually a tab, but users can configure browsers to use new windows instead.
_parent: Load the URL into the parent browsing context of the current one. If there is no parent, this behaves the same way as _self.
_top: Load the URL into the top-level browsing context (that is, the "highest" browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this behaves the same way as _self.
Note: When using target, consider adding rel="noopener noreferrer" to avoid exploitation of the window.opener API. >>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a



