In the first paragraph, all text should be displayed in uppercase.
In the second paragraph, all text should be displayed in lowercase.
In the third paragraph, each word should be capitalized.
Use inline styles.
Don’t change the content of the paragraphs, all the changed should be made with CSS.

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>Case</title>
  </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>