HTML Color chart question?

On the myspace color chart there is a color (#E5E5E5) I want to add that color to my Microsoft Frontpage website that i am designing however it doesnt not work on Frontpage. What would that color be in standard HTML and not on the myspace color chart? and how can i get it to work with Frontpage?

Public Comments

  1. The hexadecimal value that you supplied is not a "web-safe" color option. That means that different systems and browsers will render the color differently. However, you can still use that color. You just need to type it into the code view of the FrontPage IDE. If you are looking for something web-safe, I ran it through colorschemer and closest match is #CCCCCC. Normally, the differences from non-web-safe to web-safe can be significant but since these are both shades of gray, you should be fine using #CCCCCC.
  2. I haven't had any problems using HTML code for any colour on FrontPage. Check these places out. http://www.visibone.com/color/hexagon3x.html http://html-color-codes.com/ http://www.geocities.com/SiliconValley/Network/2397/ These should work. I have to look for the one I use at work (favourites page wiped during last IT maintenance)... will edit this later....
  3. With the below sample scripting from Frontpage, it is working for me. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>New Page 1</title> </head> <body> <table border="1" width="100%" id="table1"> <tr> <td bgcolor="#E5E5E5" bordercolor="#00FF00"> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> </body> </html>
Powered by Yahoo! Answers