Link codes

and

MySpace link codes

change how a link displays. Our

HTML link codes

allow you to customize the links on a page.
How to use the codes below
Find the effect you would like to use and copy the coding in the Code column. You can do this by highlighting the text, right clicking it and selecting copy. Now paste it somewhere in your profile, or within the body of your web page.

Description

Code

Basic code to add a link. <a href="CHANGEURL"> TITLE HERE </a>
This will open a link in a new windows, this way they are still on your myspace profile. <a href="CHANGEURL" target="_new"> TITLE HERE </a>
This will make all links lower case. <style type="text/css"> a:link {text-transform: lowercase;} a:visited {text-transform: lowercase;} a:hover {text-transform: lowercase;} a:active {text-transform: lowercase;} </style>
This will make links not underlined. <style type="text/css"> a:link {text-decoration: none;} a:visited {text-decoration: none;} a:hover {text-decoration: none;} a:active{text-decoration: none;} </style>
This will make links underlined only if they are hovered over. <style type="text/css"> a:link {text-decoration: none;} a:visited {text-decoration: none;} a:hover {text-decoration: underline;} a:active{text-decoration: none;} </style>
This will make links not underlined. When hovered over the link will become underlined and turn red. NOTE: you can change red to any color. <style type="text/css"> a:link {text-decoration: none;} a:visited {text-decoration: none;} a:hover {text-decoration: underline; color:red;} a:active{text-decoration: none;} </style>
This will make links not underlined. When hovered over the link will turn red. NOTE: you can change red to any color. <style type="text/css"> a:link {text-decoration: none;} a:visited {text-decoration: none;} a:hover {text-decoration: none; color:red;} a:active{text-decoration: none;} </style>
This will change the background color of the link to red if hovered. NOTE: you can change red to any color. Also the links are not underlined. <style type="text/css"> a:link {text-decoration: none;} a:visited {text-decoration: none;} a:hover {text-decoration: none; background-color: red} a:active{text-decoration: none;} </style>
This will change the background color of the link to red if hovered. NOTE: you can change red to any color. Also the links are underlined. <style type="text/css"> a:link {text-decoration: underline;} a:visited {text-decoration: underline;} a:hover {text-decoration: underline; background-color: red} a:active{text-decoration: underline;} </style>
This will make it so when a link it hovered it has a strike through it. <style type="text/css"> a:link {text-decoration: underline;} a:visited {text-decoration: underline;} a:hover {text-decoration: line-through; } a:active{text-decoration: underline;} </style>
This will make it so when a link it hovered it has a line over it. <style type="text/css"> a:link {text-decoration: underline;} a:visited {text-decoration: underline;} a:hover {text-decoration: overline; } a:active{text-decoration: underline;} </style>