Добавь элементу <div> двойную границу толщиной 2px красного цвета.
Добавь элементу <p> штрих-пунктирная границу толщиной 1px зеленого цвета.
Не изменяй количество HTML элементов.

Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим

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>