
Derek D. answered 04/21/19
Tutor
5.0
(170)
Tutor Specializing in Computer Programming
Hi! So to make a HTML Link open on a new tab/window, you would want to your line to look like this:
<a href="http://your_url_here.html" target="_blank">Link</a>
If you set the target attribute to "_blank", the link will open in a new browser window or a new tab.