Inline styles → Bad! → not productive in case of change (you have to modify every element one by one)
Stylesheet Good! But remember the <link> element
Basic formula→ selector {style: value;}
background-color is just for the color. background has more properties.
Colors
Name of the color → limited
rgb→ Mix of red, green and blue (from 0 to 255) to form any kind of color. Examples:
rgb (255, 0, 0) = red
rgb (0, 0, 0) = black
rg b (255, 255, 255)
Hex→ Hex(adecimal) [base 16] colors. It’s a variation of the rgb system. First two digits indicate the red gradation, second two the green, and the last two the blue. Minimum is 00, max is ff. Examples: