<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Paragraph tag in HTML</title>
</head>
<body>
<html> <head> <title>Paragraph</title> </head>
<body>
<p>The HTML p elementinserts a paragraph in the document. Paragraphs are block - level element that constitue a basic structure of a document and are usually renderd by browers with top and bottom margins. Paragraphs cent contain block-level elements, including other paragraphs.</p> <p>Because of its presentational nature, the "aligan" attribute for this element has been deprecated in HTML 4.01 in favor of style.Its use is nolonger recommended. </p> </body> </html>
</body>
</html>