In html, what do _balnk do? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

In html, what do _balnk do?

<a href=".....a link" target="_blank">coding</a>

24th Oct 2020, 6:44 AM
RD:programmer
RD:programmer - avatar
2 Answers
+ 9
TARGET = "_ blank" It forces the document referenced by the link to be displayed in a new browser window . TARGET = "_ self" Using this value the linked document will be displayed in the same frame or window where the link is . This value is especially useful when you have used the BASE tag to specify a default target frame than the current one . TARGET = "_ parent" This value causes the document to be displayed in the FRAMESET parent of the current frame . TARGET = "_ top" Forces the link to be displayed using the entire space of the browser window deframes destroying any structure. This value should be used whenever we create a link to an external website to our website
24th Oct 2020, 6:52 AM
Alphin K Sajan
Alphin K Sajan - avatar
+ 2
Open ur link in a new tab
24th Oct 2020, 6:45 AM
Abhay
Abhay - avatar