You have two options. 1. Set the body tag to the specified blue color: <body style='background-color: #0000FF'> (Find the colors and their corresponding codes using a search engine. #0000FF is a bright blue) 2. Create an image 1 pixel by 1 pixel of the blue color you want to use. Set the body tag to display that image: <body style='background-image: url("myBlueImage.gif")'> I have used the inline styles. You could do this using a linked sheet, or the <STYLE> tag in the header or your HTML. 1. BODY { background-color: #0000FF; background-image: url("myBlueImage.gif"); }
It depends on the color scheme you choose for the website, but an off white is a very good safe choice for the background color for any website.
It's not HTML. Background color is a CSS style. You need to put in either a stylesheet, or attach the style attribute to the tag whose background color you're trying to set. For instance: <p style="background-color:blue;">This paragraph would have a blue background.</p> Colors in CSS can be set using names (there's 170 or so of them) Via a hexadecimal RGB value: <p style="background-color:#b3b3b3;">This a meduim gray. The pairs of hex digits correspond to RGB.</p> Using RGB directly: <p style="background-color: rgb(179,179,179);">This is the same color as #b3b3b3</p> And using RGBA (which gives you an alpha channel, letting you set transparency) <p style="background-color: rgba( 179, 179, 179, .5 );">This paragraphs background color would be 50% transparent.</p>
ethfhugfhjwdkf
The BODY tag is the one you should reference if you want to set the background color of the entire webpage, using the bgcolor attribute. For example: <body bgcolor="Blue"> This should be done using CSS. In an internal or external sheet, you want a rule similar to the following: body {background-color: #ff00ff;} If you insist on doing it inline (for whatever reason) you want to attach the STYLE attribute to the BODY tag directly, and use the same rule. <body style="background-color:#f0f;">
An old method of reproducing drawings that wound up with the copies being blue background with the lines in white. The original drawing was fed through rollers with the blank paper that exposed it to light. Then the blank paper was devleoped by exposing it amonia---very smelly process. The paper would develope into a blue color and the exposed lines were white---usually.
A background with the color of light blue.
The background color of the UN Flag is light blue.
Yellow man and rim with blue background
Probably Navy Blue...or plain old White
blue
yes i think it would look beautiful
It is done with the bgcolor attribute. For example, to set a blue background for the whole web page, you would use it in the BODY tag, like this: <body bgcolor="blue">
It has to be some color and blue is nice.
Blue and Yellow
It is a saltire, which is a blue background with a white cross.
for me puple and yellow would go good with blue
It depends on the color scheme you choose for the website, but an off white is a very good safe choice for the background color for any website.