Lesson 8: CSS Colors & Fonts

Colors

p { color: red; }
p { color: #ff0000; }
p { color: rgb(255,0,0); }

Fonts

p { font-family: Arial, sans-serif; }
p { font-size: 18px; }

Next: CSS Box Model