All text on the page is divided into paragraphs
To create a paragraph, use the <p> tag. It is paired, blocky. Any text enclosed in the <p> tag will start with a new line.
The text not enclosed in the
tag will be displayed by the browser in one continuous line
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Document's name</title>
</head>
<body>
<p>Paragraph text Paragraph text Paragraph text</p>
<p>Paragraph text Paragraph text Paragraph text</p>
<p>Paragraph text Paragraph text Paragraph text</p>
</body>
</html>
Example:
Paragraph text Paragraph text Paragraph text
Paragraph text Paragraph text Paragraph text
Paragraph text Paragraph text Paragraph text
Html comments < < < HTML basics > > > Html headers