0
In html, what do _balnk do?
<a href=".....a link" target="_blank">coding</a>
2 odpowiedzi
+ 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
+ 2
Open ur link in a new tab