Create a styles.css file and include it in the index.html document.
In the styles.css file add styles for the paragraph and heading.

  • align the paragraphs to the middle
  • change the heading color to red

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>History</title>
  </head>
  <body>
    <h1>History of programming languages</h1>
    <p>During 1842โ€“1849, 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>