Learning HTML Paragraph Tag

 Paragraph Tag

The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and </p> closing tag as shown below in the example:

<html>

<head>
<title>paragraph tag</title>
</head>

<body>

<p>this is first para of text</p>
<p>this is second para </p>
<p>this is third para</p>

</body>

</html>

OUTPUT :






Comments