Adham
Adham

Reputation: 64844

how to open a link in another page?

in html code how to make tag to open a link in another page ??

Upvotes: 2

Views: 27598

Answers (3)

Evan Mulawski
Evan Mulawski

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

SquidScareMe
SquidScareMe

Reputation: 3218

you want to say target="blank". Have a look here

Upvotes: 0

Alex
Alex

Reputation: 65942

Add target="_blank" to the tag's attributes.

Upvotes: 2

Related Questions