MySpace


koNεko



Senast uppdaterad: 2008-12-31

Skicka meddelande
Snabbmeddelande
Skicka med e-post till en vän
Prenumerera

Kön: Female
Status: Swinger
Ålder: 30
Inloggning: Skorpion

Län: lost
Land: KE
Anmälningsdatum: 2004-07-27

Vem ger beröm:


tisdag, februari 07, 2006 
How To Post A Link

the ANCHOR tag

<a href="URL of link" >text</a>

A link is a clickable piece of text or image that creates a redirect to another location on the internet.
The above code is all you need. Just place the URL (or address) of the location you want to link to in the indicated place.


Here, for those of who like to learn, is a further exposition on the HTML anchor tag.

All tags begin with the "Less Than" symbol: <
And end with the "Greater Than" symbol: >
Then the tag is defined by it's job: A (anchor)
Next, any number of elements can be defined, though generally this is where you define the HREF (hypertext reference) point to the URL of your link.
An optional element commonly used in ANCHOR tags is TARGET
Tags that affect elements of a page such as making links, bolding text, changing font size also need to have a closing tag when you want to stop the indicated effect, such as at the end of a link. EXAMPLE: </a>

TARGET
indicates where the link opens at.
_blank renders the link in a new, unnamed window
_self renders the link in the current window/frame.
There are other options, but these are the only two you will ever really need on myspace.

example of _blank target
customizing
<a href="http://www.myspace.com/customizing" target="_blank">customizing</a>

example of linked image

<a href="http://www.myspace.com/customizing" target="_blank"><img src="voo.jpg" /></a>

posting an image tutorial