HTML codes!!!?
I was just wondering if anyone can give me HTML codes that can add color to the text and make it move!!! So I can use it in Friendster. Thanks!!!
Public Comments
- To change the font colour just add the colour setting to the font tag: <font color="red">Text Here</font> Then just change the colour to the one you want or use a hex code. To get the text to move you can use a marquee tag which will make the text scroll across the screen. <MARQUEE>Text Here</MARQUEE>
- Use css for setting the element. <MARQUEE style="color: Red;"></MARQUEE> add - font-family: Tahoma; if you want to change the Font <MARQUEE style="color: Red;font-family: Tahoma;"></MARQUEE> font-size: 14px; if you want to change the size of your text <MARQUEE style="color: Red;font-family: Tahoma;font-size: 14px;"></MARQUEE> etc.
- Use <font="red"></font> tab. For example, if you want the word 'Yahoo!' to be red, and then 'answers' to be black (default), code: <font color="red">Yahoo!</font> answers There are 16 predefined colors: Black, silver, gray, white, maroon, red, purple, fuchsia, green, lime, olive, yellow, navy, blue, teal, aqua To have more color variation, you can use hex code, e.g. #3D001C etc. You may refer to "http://www.cookwood.com/html/" for a table of such codes and the corresponding colors. For moving text, as the previous answerer has said, use <marquee> tab. For example, you want 'Welcome to my homepage!' to move horizontally at the top of your page, then code at the desirable position: <marquee>Welcome to my homepage!</marquee>
- I think following URL will solve your problem.... in this page you will find various kind of marquee code... choose any one as per your convenience http://www.wtv-zone.com/bluefox/marquee.html
- marquee has many interesting abilities ;) <marquee direction="up,down,right,left" (choose one ) width="20px" height="10px" bgcolor="green" color="red" onMouseOver="this.stop()" onMouseOut="this.start()">text goes here</marquee> ;)
Powered by Yahoo! Answers