HTML/CSS/Link Tags/a

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

"a" Example: anchor

   <source lang="html4strict">
   

<html> <head> <title>A element example</title> </head> <body>

  <a name="top"></a>

Used as an anchor:

<a href="#par3">Go to paragraph #3 in this page</a>

<a href="yourdocument.html#sty">Go to the yourdocument.htm page, sty location</a>

Paragraph #2

<a name="par3">Paragraph #3</a>

<a href="#top">Top</a>

</body> </html>


     </source>
   
  


"a" Example: link

   <source lang="html4strict">
   

<html> <head> <title>A element example</title> </head> <body>

  <a name="top"></a>

Used as a hyperlink:

  <a href="http://www.wbex.ru/" target="_blank">wbex.ru</a>
  

</body> </html>


     </source>