Make the text in all paragraphs green.
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>Внутренний стиль</title>
    <style>
      p {
        font-size: 16px;
      }
    </style>
  </head>
  <body>
    <p>This tag defines a paragraph.</p>
    <p>Browsers automatically add a single blank line before and after each element.</p>
  </body>
</html>