Add a pink background to each block in index.html.
Use internal styles and classes, the name of the class can be anything you like.
Don’t change the number of blocks.

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>Classes</title>
  </head>
  <body>
    <div>The div tag defines a section in an HTML document.</div>
    <div>This tag is used as a container for HTML elements.</div>
    <div>The div tag can be easily styled by using the class or id attribute.</div>
    <div>Any sort of content can be put inside this tag.</div>
  </body>
</html>