HTML/CSS/Link Tags/a

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

"a" Example: anchor

    

<html>
<head>
<title>A element example</title>
</head>
<body>
   <a name="top"></a>
   <h2>Used as an anchor:</h2>
   <p><a href="#par3">Go to paragraph #3 in this page</a></p>
   <p><a href="yourdocument.html#sty">Go to the yourdocument.htm page, sty location</a></p>
   <p align="left">Paragraph #2</p>
   <p align="left"><a name="par3">Paragraph #3</a></p>
   <p align="left"><a href="#top">Top</a></p>
</body>
</html>



"a" Example: link

    
<html>
<head>
<title>A element example</title>
</head>
<body>
   <a name="top"></a>
   <h2>Used as a hyperlink:</h2>
   <a href="http://www.wbex.ru/" target="_blank">wbex.ru</a>
   
</body>
</html>