В файле index.html ты найдешь материл для повторения.
Тебе нужно немного улучшить читаемость текста.
Добавь горизонтальную линию-разделитель после каждого параграфа, кроме последнего

Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим

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>