open new browser

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
bangla123
Forum Newbie
Posts: 9
Joined: Wed Jan 26, 2011 10:36 pm

open new browser

Post by bangla123 »

Hi,

I have this below code in html:
<font face="Verdana" size="2">&nbsp;&nbsp; </font><font face="Verdana" color="#000080" size="2">
<a href="http://www.google.com">
<font color="#"><img src="google.bmp" alt="" width="59" height="32" /></font></a>

when i click on google it does not open a new browser. it opens on existing browser. Can you please help me how i can open a new browser(in php or html) after click google.

Many thx.
User avatar
VladSun
DevNet Master
Posts: 4313
Joined: Wed Jun 27, 2007 9:44 am
Location: Sofia, Bulgaria

Re: open new browser

Post by VladSun »

Code: Select all

<a href="http://www.google.com" target="_blank">...
http://www.htmlcodetutorial.com/linking/_A_TARGET.html
There are 10 types of people in this world, those who understand binary and those who don't
Post Reply