|
|
HTML links - Target attribute of anchor tagAs described in previous session, the Target attribute of <A> is most often used when dealing with frames. It specifies the window in which the document should be loaded. The TARGET attribute can take one of the six values below: (note the underscore for the first four)
The links and their code are presented below. Click on the link to see how the TARGET attribute behaves. <A HREF="test.html" TARGET="RESOURCE WINDOW"> Loads test.html in a new browser window</A>Loads test.html in a new browser window <A HREF="test.html" TARGET="_blank"> Loads test.html in a new browser window</A>Loads test.html in a new browser window <A HREF="test2.html" TARGET="_self"> Loads test2.html in this window</A>Loads test2.html in this window
Page contents: HTML links, creating html page links, linking web pages using html, attributes of the anchor tag
Page URL: http://www.webdevelopersnotes.com/tutorials/adhtml/ html_links_target_attribute_of_anchor_tag.php3
|
|