In HTML, which one of the following is used to open the linked documen

In HTML, which one of the following is used to open the linked document in a new browser window?

_self
_link
_blank
_open
This question was previously asked in
UPSC CISF-AC-EXE – 2024
In HTML, the `target` attribute of the `` (anchor) tag specifies where to open the linked document. The value `_blank` is used to open the linked document in a new browser window or tab.
– The `target` attribute determines the browsing context (window, tab, or frame) in which the linked document will be displayed.
– Common values for the `target` attribute include `_self` (default), `_blank`, `_parent`, and `_top`.
– `_self` opens the document in the same window/tab the link was clicked.
– `_parent` opens the document in the parent frame.
– `_top` opens the document in the full body of the window.
– Using `target=”_blank”` should be done judiciously as it can impact user experience, although it is very commonly used for external links.