Add a 2px red double border to the <div> element.
Add a 1px green dashed border to the <p> element.
Do not change the number of HTML elements.

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>Behind the word mountains</title>
  </head>
  <body>
    <div>
      <p>
        Far far away, behind the word mountains,
        far from the countries Vokalia and Consonantia,
        there live the blind texts.
        Separated they live in Bookmarksgrove
        right at the coast of the Semantics, a large language ocean.
      </p>
    </div>
  </body>
</html>