Add 10px margins to each<div>block.
Use only one property with one value.

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>
  <head>
    <title>IDE</title>
  </head>
  <body>
    <div>
      <p>An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development.</p>
    </div>
    <div>
      <p>IDEs increase programmer productivity by combining common activities of writing software into a single application.</p>
    </div>
    <div>
      <p>An IDE that knows the syntax of your language can provide visual cues.</p>
    </div>
  </body>
</html>