24-04-2009

CSS/(X)HTML anchor link

Used to link to a named link on the page

<A href="#section1">go to introduction</A>
 
<A name="section1">Introduction</A>
<p>wawawa </p>
 
 
 

Or link to an element:

<A href="#section2">Go to introduction</A>
 
<H2 id="section2">Introduction</H2>
<p>wawawa </p>
 

Comments:

Your comment:

»

 

[x]