1D0-610 · Question #37
You are creating a style sheet to format your Web pages. For the page background color, you enter the hexadecimal code FF0000. What color will the page background be when you apply this style?
The correct answer is A. Red. FF0000 represents maximum red intensity (FF = 255), with zero green (00) and zero blue (00) in the RGB color model, making the background red. Blue would require 0000FF (full blue channel, no red or green), and black is 000000 (all channels at zero, meaning no light). Green…
Question
You are creating a style sheet to format your Web pages. For the page background color, you enter the hexadecimal code FF0000. What color will the page background be when you apply this style?
Options
- ARed
- BBlue
- CBlack
- DGreen
How the community answered
(29 responses)- A93% (27)
- B3% (1)
- C3% (1)
Explanation
FF0000 represents maximum red intensity (FF = 255), with zero green (00) and zero blue (00) in the RGB color model, making the background red. Blue would require 0000FF (full blue channel, no red or green), and black is 000000 (all channels at zero, meaning no light). Green uses 008000 or 00FF00 (full green channel, no red or blue). A helpful memory tip: hex colors follow the pattern #RRGGBB - the first two digits control red, the middle two green, and the last two blue, so "FF followed by four zeros" means only red is maxed out.
Topics
Community Discussion
No community discussion yet for this question.