In the file index.html you will find some material to revise.
You need to improve the readability of the text a little.
Add a horizontal separator line after each paragraph except the last one

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

<h2>HTML</h2>
<p>HTML stands for HyperText Markup Language. HTML is responsible for the structure and content of a page, and tags are the building blocks for building a page.</p>
<h2>Tags structure</h2>
<p>All tags have names that are enclosed in angle brackets, or, in other words, signs less than `<` and greater than `>`</p>
<h2>Paired tags</h2>
<p>Paired tags have two parts: an opening tag and a closing tag. The closing tag is distinguished by the presence of a `/` before the tag name.</p>