HTML/CSS/Link Attributes/target — различия между версиями

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

Версия 12:21, 26 мая 2010

"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>