HTML - Paragraph
The HTML <p> tag is used to define a paragraph on a web page. It represents a block of text or content that forms a logical unit. Here's a breakdown of the <p> tag:
The <p> tag stands for "paragraph."
It is used to group together a series of sentences or text that belong together and form a coherent unit.
<p>This is a paragraph of text.</p>
The <p> tag is a block-level element, which means it creates a line break before and after the content within it. This makes each paragraph visually distinct from other elements on the page.
Here's an example that demonstrates the usage of the <p> tag:
<p>This is the first paragraph.</p>
<p>This is the second paragraph.</p>
<p>This is the third paragraph.</p>
In the example above, we have three separate paragraphs. Each paragraph is contained within its own <p> tags. This allows the browser to render each paragraph as a separate block of text.
The <p> tag can be further styled or modified using CSS properties such as font size, color, alignment, and more. However, for grade 5 students, it's more important to understand the purpose and structure of the <p> tag as a way to organize and present text content on a web page.