Add padding to each paragraph.
Top and bottom padding should be 20px.
The left and right sides should be 10px.

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>Linked List</title>
  </head>
  <body>
    <h2>Linked List</h2>
    <p>A linked list is a linear data structure where each element is a separate object.</p>
    <p>Each element of a list is comprising of two items โ€“ the data and a reference to the next node.</p>
    <p>There three types of linked lists: Singly Linked List, Doubly Linked List, Circular Linked List.</p>
  </body>
</html>