Let’s change the border color.

  • The top border should be yellow
  • The bottom border should be red
  • The left border should turn violet.
  • The right one should remain green.
    Do not change the number of paragraphs, or the width and style of the border.

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>
    <style>
      p {
        border: 1px solid green;
      }
    </style>
  </head>
  <body>
    <p>
      Theres a voice that keeps on calling me. Down the road, thats where Ill always be.
      Every stop I make, I make a new friend. Cant stay for long, just turn around and Im gone again.
      Maybe tomorrow, Ill want to settle down, Until tomorrow, Ill just keep moving on.
    </p>
  </body>
</html>