CODE
<a href="Large_pic.jpg" width="400px"><img src="thumbnail.jpg width="100px" /></a>
This code makes it so that there is a small picture displayed and when you click it, it converts to a larger picture. Problem with it is the full image has to load, so the page may take longer to load.
For making "Links" on your page, there doesn't have to be anything displayed.
CODE
<a id="anchor_name"></a>
Place this somewhere inside your page. and when you click on the link here:
CODE
<a id="#anchor_name">Click this link!</a>
you will be taken to that spot on the page.
CODE
<a id="#">Click this link to go to the top of this page!</a>
Using "#" as the named id will move you to the top of the page.
Also, use "id=" instead of "name=". "id=" is the
standards Compliant (preferred) way.
"name=" will work for most Browsers, but is deprecated by the w3c.
<a name="DIV TAG NAME">TEXT HERE</a>
Comment/Reply (w/o sign-up)