answersLogoWhite

0


Best Answer

You can only change a website if it belongs to you. for instance i have a website of my own. i created it using webeden. when i log in, i can edit anything i want, including the color background. you try!

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

How do i add a background image to my webpage?

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you put a color background on websites?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you put color on background for websites?

This is the HTML tag: <body bgcolor="green"> or you can use codes <body bgcolor="#00FF00">


How do you put multicolor on a URL background?

You could easily put multicolor background. You can select a graphic and put background-color="url('url-here')".


How do you put an image background on websites?

Here's the HTML tag: <body background="yourimage.gif"> or <body background="yourimage.jpg">


How do you put color on the background of the turbo C?

extren void setbkcolor (int color);


What is the background code for a HTML document?

A background can be added on CSS. ex: #body {background: url(../images/bodybg.jpg) repeat-x;}The HTML code for background color is Note: The code must be put inside the body tag, that is between and of your HTML script and the values of color can be change accordingly. For example, if you want to put gray background color you simply change the value to "#727272" or "#000000" for black if you want.


How do you change the background color on MySpace?

just put this in your about me section at the bottom. you can change the 000000 to any color code you want


How do put a background on publisher?

On the Format menu, click Background.In the Background task pane, under Apply a background, click a color from the publication's color scheme that you want to apply to the background.Point to the background that you want, click the arrow next to it, and then do one of the followingOn the Format menu, click Background.In the Background task pane, under Apply a background, click a color from the publication's color scheme that you want to apply to the background.Point to the background that you want, click the arrow next to it, and then do one of the following


HTML for adding a background color?

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>


How do you put color on your text for websites?

If you're using HTML, the script of <font color="XXX">Text goes here</font>


What CSS property specifies the background color of a table?

Use the CSS declaration "background-color" For instance... <style type="text/css"> body { background-color: red; } </style> That code will change the background color to red. Background color will take the same values for a color as all other CSS color. A named color keyword, a hex RGB value, a decimal RGB value, and a decimal RGBA value.


What is the background color or pattern for the paragraph text?

The background color would be a hex number like #eeeeee or the title of the color like lightslateblue p{ background: #/name }


Can you set background color using font tag?

<font style="background-color: red;">this text will have a red background</font>