reading-notes

CSS Notes

What is the purpose of CSS?

CSS controls the look and style of the web page. HTML determines the content while the CSS determines how the content is shown.

What are the three ways to insert CSS into your project?

Write an example of a CSS rule that would give all <p> elements red text.

p { color: red; }