Looking for a specific link tag/code html?

gell1981

New member
Im adding a link to a web page but can't remember something. Im looking to create a link that when clicked it takes you to a new page but doesn't open in a new window.. whats the tag/code please.
 
An ordinary link will use the same window:
<a href="link.htm">Link</a>

Target="_blank" will open a new window:
<a href="link.htm" target="_blank">Link</a>
 
Back
Top