The paragraph has a border, let’s change it a bit.

  • Change the border style from solid to double.
  • Set the border color to green
  • Use internal styles

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 red;
      }
    </style>
  </head>
  <body>
    <p>One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections. </p>
  </body>
</html>