In HTML, which one of the following is used to open the linked document in a new browser window?
_self
_link
_blank
_open
Answer is Wrong!
Answer is Right!
This question was previously asked in
UPSC CISF-AC-EXE – 2024
– Common values for the `target` attribute include `_self` (default), `_blank`, `_parent`, and `_top`.
– `_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.