В файле index.html написано три параграфа.
Давай каждому из них добавим цвет, используй внутренние стили.

  • Текст первого параграфа должен быть красным.
  • Текст второго параграфа должен быть задан с помощью HEX кода - 808000.
  • Текст третьего параграфа должен быть задан с помощью rgb кода - (0, 128, 128).

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

index.html

<!DOCTYPE html>
<html>
  <head>
    <style>
    </style>
  </head>
  <body>
    <p id="paragraph-1">
      Most programming is done with programming languages.
      A programming language is an artificially constructed language used to instruct computers.
    </p>
    <p id="paragraph-2">
      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 id="paragraph-3">
      Later, the have been replaced with visual interfaces.
    </p>
  </body>
</html>