let us talk about css
To make changes or modification
customize your template
go to >>EDIT HTML
scroll the text into HTML code in css definition section
body{ BACKGROUND: #008000; MARGIN: 0px; FONT: small Georgia Serif; COLOR: #333333; TEXT-ALIGN: center } |
Here css body definition are shown
the attribute taken may be vary
and this will depend upon author how they are defind
let us talk about first attribute background
it
describe whole background color of your webpage or blog page
there are more than 256 color and
too many hexa decimal color code
defind for HTML you now will see all color code
We write the Hex color using six bits, as HEX color code of
black color is #000000. Hex color code is the combination of
Red, Green, Blue (RGB) colors. First two zero's in the code
represents the Red color, third & fourth zero's represents
the Green color and fifth & sixth zero's represents the
Blue color. 'F' is the maximum value of each zero. Hence if
want the HEX color code of red color then just make the write
the the maximum value of the zero's representing the Red color.
i.e Hex color code for red color is #FF0000. Similarly you can
create the HEX color code for Green & Blue also
Color | Color
HEX |
Color
RGB |
|
#000000 |
rgb(0,0,0) |
|
#FF0000 |
rgb(255,0,0) |
|
#00FF00 |
rgb(0,255,0) |
#0000FF | rgb(0,0,255) | |
#FFFF00 | rgb(255,255,0) | |
#00FFFF | rgb(0,255,255) | |
#FF00FF | rgb(255,0,255) | |
#C0C0C0 | rgb(192,192,192) | |
#FFFFFF | rgb(255,255,255) | |
More
Colors |
So now you can easily have too many colors on your web page.
0 comments:
Post a Comment