Paragraph HTML
Paragraph HTML
The paragraphs are created in HTML using <p> tag. The paragraph should start with
<p> tags and end with corresponding <p> end tag. The following code will make it
more clear :
<html>
<head>
<title>Paragraph tag</title>
</head>
<body>
<p>This is first paragraph of my document.</p>
<p>This is second paragraph of my document.</p>
</body>
</html>