What is the purpose of CSS? Primary purpose of controlling the presentation and styling of web content. CSS enables web developers and designers to define how HTML elements should appear and be displayed on a web page.
What are the three ways to insert CSS into your project? Inline CSS, Internal CSS, External CSS,
Write an example of a CSS rule that would give all <p> elements red text. p { color: red; }
<!DOCTYPE html>
This is a paragraph with red text.
Another paragraph with red text.