1<a href="#" target="_blank">Opens the linked document in a new window or tab</a>
2
3<a href="#" target="_self"> Opens the linked document in the same frame as it was clicked (this is default)</a>
4
5<a href="#" target="_parent">Opens the linked document in the parent frame</a>
6
7<a href="#" target="_top">Opens the linked document in the full body of the window</a>
8
1<!--blank is used to open the link in new tab-->
2<a href="https://www.google.com" target="_blank">google</a>
3