what is : The <p> tag adds a paragraph.
що таке : Тег <p> додає абзац.
<!DOCTYPE html>
<html>
<head>
<title>Chitus</title>
</head>
<body>
<p>перший абзац/first paragraph</p>
<p>другий/second</p>
<p>і ще/and more</p>
</body>
</html>
The <p> tag creates a block: everything inside it will start on a new line. A vertical indent appears between the <p> blocks, the amount of which can be set using styles.Any text content can be placed inside the block.
Тег <p> створює блок: все в ньому буде починатися з нового рядка. Між блоками <p> з'являється вертикальний відступ, розмір якого можна задати за допомогою стилів. Всередині блоку можна розмістити будь-який текстовий контент.