Каждому из параграфов добавь отступ первой строки.

  • Первому параграфу 10px, используй id paragraph-1.
  • Второму параграфу 20px, используй id paragraph-2.
  • Третьему параграфу 30px, используй id paragraph-3.
    Используй встроенные стили.

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

index.html

<!DOCTYPE html>
<html>
  <head>
    <style>
    </style>
  </head>
  <body>
    <p>
      Most programming is done with programming languages.
      A programming language is an artificially constructed language used to instruct computers.
    </p>
    <p>
      At one point language-based interfaces, such as the BASIC and DOS prompts of the 1980s and 1990s, were the main method of interacting with computers.
    </p>
    <p>
      Later, the have been replaced with visual interfaces.
    </p>
  </body>
</html>