How to use the codes belowFind 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 |
| Place an image on a web site. |
<img src = "CHANGEURL"> |
| Make an image have a border. NOTE: #FF0000 is the code for red, please visit our color codes for more colors. |
<img style="border:#FF0000 1px SOLID" src="CHANGEURL"> |
| This will change an images width and height. NOTE :drastic size changes will distort the image. |
<img src = "CHANGEURL" width="100" height="100"> |
| Make an image have a background color. NOTE: #FF0000 is the code for red, please visit our color codes for more colors. |
<img style="background:#FF0000" src="CHANGEURL"> |
| Flip an image horizontally. |
<img src="CHANGEURL" style="filter:fliph"> |
| Flip an image vertically. |
<img src="CHANGEURL" style="filter:flipv"> |
| Make an image black and white. |
<img src="CHANGEURL" style="filter:gray"> |
| Invert an images colors. |
<img src="CHANGEURL" style="filter:invert"> |
| Emboss an image. |
<img src="CHANGEURL" style="filter:progid:dximagetransform.microsoft.emboss"> |
| Engrave an image. |
<img src="CHANGEURL" style="filter:progid:dximagetransform.microsoft.engrave"> |
| Make an image x-ray. |
<img src="CHANGEURL" style="filter:xray()"> |
| Make an image transparent. Just change the opacity from 0 - 100 to get your desired effect. |
<img src="CHANGEURL" style="filter:alpha(opacity=50)"> |
| This will make an image slide show effect. NOTE: you can add as many images between the marquee tags as you like and they will all scroll. |
<marquee>
<img src="CHANGEURL" >
<img src="CHANGEURL" >
</marquee> |
|
|
|