Interactive online courses HTML Academy
2026-03-09 14:08 Diff

You can create the basic structure for the text using headings. The finer structure can be specified using paragraphs. The tag <p> (which stands for “paragraph”) is used to mark up paragraphs.

By default, browsers display paragraphs separated from the rest of the content by top and bottom margins (but you can over-ride this with CSS). So, if you need to separate one block of text from another, the right decision would be to enclose them in <p> tags.

Let’s now mark up the introductory text on our main webpage using paragraphs.

A paragraph is a segment of writing consisting of one or several sentences, which are often connected by a common theme. This is a typical natural language definition. An HTML paragraph is something that is completely different.

HTML paragraphs are just an unbroken sequence of phrasal elements. In other words, they are purely structural and do not convey semantic information. Paragraphs can even exist without needing to be enclosed by <p> tags.

Rather, the <p> tag allows us simply to explicitly specify paragraphs that group together elements with phrasal content. These paragraphs can consist not just of blocks of text, but also images, links or input fields, for example.

Not all tags can be nested within <p>. For example, major structural tags, headings, forms, lists and tables cannot be placed inside a paragraph. When your browser encounters an inappropriate tag inside <p>, it will automatically close the <p>, then display the inappropriate tag, followed by the remainder of the paragraph but without a surrounding tag, and then it will insert an empty <p> before the </p> that you wrote.