Add top and left margins to the <h2> heading.
The top margin should be 15px. The left margin should be 20px.

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>Margins</title>
  </head>
  <body>
    <h2>Margins</h2>
    <p>Margins can be added to any block element</p>
  </body>
</html>