Создай файл styles.css и подключи его в index.html документу.
В файле styles.css добавь стили для параграфа и заголовка.

  • добавь выравнивание по середине дла параграфов
  • заголовок сделай красным

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

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>History</title>
  </head>
  <body>
    <h1>History of programming languages</h1>
    <p>During 18421849, Ada Lovelace translated the memoir of Italian mathematician Luigi Menabrea about Charles Babbage's newest proposed machine: the Analytical Engine.</p>
    <p>She supplemented the memoir with notes that specified in detail a method for calculating Bernoulli numbers with the engine, recognized by most of historians as the world's first published computer program.</p>
  </body>
</html>