Indent the first line for each paragraph.

  • For the first paragraph set indent to 10px, use id paragraph-1.
  • For the second paragraph set indent to 20px, use id paragraph-2.
  • For the third paragraph set indent to 30px, use id paragraph-3.
    Use internal styles.

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>
    <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>