There are three <div> blocks in the index.html file.
The 2nd and the 3rd paragraphs need to be 5px raised to the previous.

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>Data Structures</title>
  </head>
  <body>
    <h3>Data Structures</h3>
    <div>A data structure is a way of organizing data in a computer so that it can be used effectively.</div>
    <div>The idea of using different data structures is to reduce the space and time complexities of different algorithms.</div>
    <div>Array, Linked List, Stack and Queue are some popular data structures.</div>
  </body>
</html>