There are many different aspects of website design. Now that you've made your first webpage, it's time to add some mods. Let's start with a simple one: background color. Here is what you do:
change this tag:
<body>
to look like this
<body bgcolor = "FF0000 ">
bgcolor is all one word...it stands for background color
it is set equal to two Fs followed by four zeroes
This code will make your page turn red
Why? Simple: because it uses the "RGB" color system (which combines mixtures of red, green and blue) in conjunction with the hexadecimal color system, where the numbers 0 - 9 and the letters A - F to create upwards of 16 million different colors. The first two letters or numbers are for the red values, while the first two zeroes are for green, while the last two zeroes are for blue.
It's easy enough to change the values: there's even a website that can help you find just the right color, AND generate the hex value you need. It's right here:
http://www.colorpicker.com/
Good luck, and get your background color the way you want it!
cheers,
Mr. L
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.