Let’s practice a new style - the background color.
Give all paragraphs a blue background and white text for the text.
Don’t use inline styles, don’t change the number of paragraphs.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE html>
  <html>
  <head>
    <title>Internal stylesheet</title>
  </head>
  <body>
    <p>This paragraph should have blue background and white text color</p>
    <p>This paragraph should have exactly the same styles</p>
  </body>
</html>