html target code example

Example 1: html new target

<a href="#" target="_blank">Opens the linked document in a new window or tab</a>

<a href="#" target="_self">	Opens the linked document in the same frame as it was clicked (this is default)</a>

<a href="#" target="_parent">Opens the linked document in the parent frame</a>

<a href="#" target="_top">Opens the linked document in the full body of the window</a>

Example 2: where to use .target command in html

<a target="_blank" href="">

Example 3: html target

Choose one of the following:
<a target="_blank|_self|_parent|_top|framename">

Example 4: data-target in html

Notice the link element has two custom data attributes: 
data-toggle and data-target . The toggle tells Bootstrap what to do 
and the target tells Bootstrap which element is going to open. 
So whenever a link like that is clicked, 
a modal with an ID of “basicModal” will appear

Tags:

Html Example