HTML <a> Tag with target="_top" Attribute

<a href="https://www.PuStudy.Com" target="_top">HTML codes</a>

How to Use the above Code

  1. Replace the value of the href attribute to be the URL of the document you're linking to.
  2. Replace the anchor text (HTML codes) with the text you want the user to see.

About the _top Value

The _top value of the target attribute specifies that the URL should open in the top browsing context (or current, if the current is already the top browsing context).

However, there are some possible variations to this rule, depending on whether the page is sandboxed or not. See the W3C website for more information.

About the target Attribute

The target attribute specifies the target frame to load the page into. Only to be used when the href attribute is present.

Possible values:

  • _blank
  • _self
  • _top
  • _parent
  • Any string with at least one character that does not start with a U+005F LOW LINE character.