This question already has an answer here:
Is it possible to open an a href link in a new tab instead of the same tab?
<a href="http://your_url_here.html">Link</a>
marked as duplicate by Anirudh Ramanathan, p.campbell, Benjamin Gruenbaum, Patrick B., Troy Alford Mar 21 '13 at 21:34This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question. |
|
|
You should add the For example:
|
|||||||||||||||||||||
|
|
It shouldn't be your call to decide whether the link should open in a new tab or a new window, since ultimately this choice should be done by the settings of the user's browser. Some people like tabs; some like new windows. Using |
|||||||||||||||||||||
|
|
set the EDIT: It works, however W3Schools says there is no such target attribute: http://www.w3schools.com/tags/att_a_target.asp EDIT2: From what I've figured out from the comments. setting target to _blank will take you to a new tab or window (depending on your browser settings). Typing anything except one of the ones below will create a new tab group (I'm not sure how these work):
|
|||||||||||||||||||||
|
|
You can simply do that with setting |
|||||||||
|
rel="noopener"to the links) – Carl Ambroselli Mar 22 '16 at 14:57