Tags for paragraphs
One of the main elements of the page is paragraphs. They can be compared to paragraphs in a book - each paragraph starts on a new line and has a so-called indent (this is when the first line of text of the paragraph is slightly indented to the right). By default, there is no indent, but it is easy to make (more on that later).
A paragraph is created using the p tag like this:
<p>
This is a paragraph 1.
</p>
<p>
This is a paragraph 2.
</p>
<p>
This is a paragraph 3.
</p>
Create 5 paragraphs with some text on your page. See how these paragraphs will look in the browser.