Add 40px spacing between words and 10px spacing between letters.
Use internal stylesheet and the tag selector to add 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>
    <title>Spacing</title>
  </head>
  <body>
    <p>
      Most programming is done with programming languages.
      A programming language is an artificially constructed language used to instruct computers.
    </p>
  </body>
</html>