# Read: 05 - Design web pages with CSS

## Answers

1. What is the purpose of CSS?

   - It is used to make your website look Jazzy! To style as many elements as you like to make them look better, and perform some actions as well.
  
2. What are the three ways to insert CSS into your project?

   - Inline - by using the style attribute inside HTML elements.
   - Internal - by using a <style> element in the <head> section.
   - External - by using a <link> element to link to an external CSS file.

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

   - p {
     color: red;
     }
