HTML/CSS/Link Attributes/target

Материал из Web эксперт
Перейти к: навигация, поиск

"target" Example: blank, parent, self and top

   <source lang="html4strict">
   

<HTML> <BODY> <a href="http://www.w3c.org" target="_blank">W3C Consortium (blank)</a>
<a href="http://www.microsoft.ru" target="_parent">Microsoft home page (parent)</a>
<a href="http://www.yahoo.ru" target="_self">Yahoo home page (self)</a>
<a href="http://www.wbex.ru" target="_top">wbex.ru home page (top)</a> </BODY> </HTML>


     </source>