Which tag is used to write a paragraph?
Checks your knowledge of the
<p> tag used to create text paragraphs on a webpage.
0 Answers
The <p> tag in HTML is used to define a paragraph. It helps group sentences together, making the content organized and readable. Browsers automatically add some space before and after a paragraph, giving a clean layout without extra styling. You can place text, links, or inline elements inside a <p> tag, but block-level elements like <div> or <h1> should not be nested inside it. Using <p> improves accessibility and SEO, as search engines understand the content structure better. Overall, the <p> tag is essential for creating structured, easy-to-read web content in HTML.