Link Tutorials
Here you will find how to add and link your text, images and more. To get the code onto your page just select the code and copy&paste it into your html wherever you want to put your text. For further assistance please email me.
Creating Simple Text And Email Links
Targeting Links To Specific Windows/Frames
Adding A Link To Your Image
Using The Alt/Title Tag
This Is An Image
That Is Linked!


This code will redirect the visitor to the url you specify. Have Fun.

This code automatically waits a few seconds then goes to the site you give in the code. The higher the number the longer the wait before getting to the site.
To create a text link to a page:

Copy&Paste the code on the right into your html code and where page.html is the URL of the page and where Your Page Name is the name in which your calling that page/link. To the right is an example of a simple text link.
To create a simple email link:

Copy&Paste the code on the right into your html code and where yourmail@email.com is where you put your email address and where Your Email Here is the name in which your calling that link. To the right is an example of a simple email link.
THIS IS AN EXAMPLE OF A SIMPLE TEXT LINK!

THIS IS AN EXAMPLE OF A BASIC EMAIL LINK!

To create a simple email link:

Copy&Paste the code on the right into your html code and where yourmail@email.com is where you put your email address and where Your Email Here is the name in which your calling that link.  Also where yoursubject is the subject of the email your sending. To the right is an example of a simple email link.
THIS IS AN EXAMPLE OF AN EMAIL LINK WITH A SUBJECT!

Targets let you open a link in a specific window or frame as well as a new window. To target a link simply type target="targetname" in the link tag like in the example below. Where targetname is the name of the window or frame where you want that link to load.
<a href="pagename.html" target="targetname">Link Name</a>
Targeting to a Frame:
The name of the frame is in the frame code where it says name=framename where framename is the name that you have named the frame. If you want the link to load in that frame then put that same name for the target as your name of the frame like this target=framename.
Targeting to a Window:
These are targets that will work for opening a new window or loading in the current window. You can use these when using frames as well.

TARGET="_blank"
(This target will cause the link to always be loaded in a new blank window )

TARGET="_self"
(This target causes the link to always load in the same window the link was clicked in)

TARGET="_parent"
(This target makes the link load in the immediate FRAMESET parent of this document. This defaults to acting like "_self" if the document has no parent)

TARGET="_top"
(This target makes the link load in the full body of the window. This defaults to acting like "_self" if the document is already at the top)
Creating A Link Redirection
copy&paste this code between
the <head></head> tags of your html
<a href="pagename.html" title="description">Link Name</a>
To use an alt or title on your links just add this within your link code title=descripton where description is the words you want to show when they hover over your link. Below is an example.
Hover over the link to view the alt/title tag.

Example: Casandy's Designs
Here is what your code should look like. Remember you can add targets and stuff in your link code as well.
Copyright 2005- CasandysDesigns.com
All Rights Reserved