Reputation: 64844
in html code how to make tag to open a link in another page ??
Upvotes: 2
Views: 27598
Reputation: 55334
If by "another page" you mean a new window:
<a href="/page.html" target="_blank">Text</a>
More targets here: http://www.w3schools.com/tags/tag_a.asp
Upvotes: 11