Where can I obtain HTML coding 4 colors on the background of a website?

Im a novice so I need help for dummys. I'm building a website, but I don't know how to change the background color. Please help me some one. I need it!

Public Comments

  1. This is how i learned the basics of HTML its a good site with great tutorials www.echoecho.com it even has Java and a multitude of other useful tools for when you wanna add somthing fancy to your site.
  2. Change the body tag's bgcolor property <body bgcolor="yellow"> You can specify certain basic colors as their common names, or use hexadecimal (Web-safe) colors. Google "hexadecimal color" and you'll find swatches out there.
  3. This is really a Cascading StyleSheet (CSS) question. Try the link below. http://www.htmlhelp.com/reference/css/color-background/background-color.html
  4. <body bgcolor="#xxxxxx"> replace xxxxxx with a six digit hex code.
  5. There's a color chart here: http://www.webmonkey.com/webmonkey/reference/color_codes/ If you need helping learning the HTML for changing the background color, there's a nice explaination here: http://www.webmonkey.com/webmonkey/teachingtool/bgcolor.html I fully recommend you take a look at the tutorials here: http://www.webmonkey.com/teachingtool/ There's lots of useful stuff on that site. It's where I learnt HTML. Good luck!
  6. If you are using HTML only and no CSS use <body bgcolor="color"> where color is a name, such as white, black, red, cyan, gold, silver, etc. or a hex combo which begins with # then six characters using 0-9 and A-F where it's #rrbbgg.
  7. Use "bgcolor" attribute in body tag. For Example: <body bgcolor="green"> Here is your HTML body ........ </body> "bgcolor" is stand for background color. Here you can also use hexadecimal color code starting with number sign For example <body bgcolor="#44ff56"> Here is your HTML body ........ </body> Hexadecimal color code is in #rrggbb format where r = red, g=green, b=blue
Powered by Yahoo! Answers