just try | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

just try

I TRIED <html> <head>links</head> <body> <a href="http://www.facebook.com"target="blank">LEARN PLAYIING</a> </body> </html> THE BLANK TARGET WITHOUT THE (_ ) IT WORKED !!!!

19th Feb 2017, 11:54 AM
Mahmoud Abdalla
Mahmoud Abdalla - avatar
1 Answer
+ 1
That is because you are setting the target name as "blank" It does not put it into a new window, rather a windows named blank. <html> <head>links</head> <body> <a href="http://www.facebook.com"target="blank">LEARN PLAYIING 1</a> <a href="http://www.sololearn.com"target="blank">LEARN PLAYIING 2</a> </body> </html> If you click on the first link and it opens a new page when you click the second link it will load it to the same page as the first one. https://www.w3schools.com/tags/att_a_target.asp
30th Mar 2017, 6:12 PM
Erik