HTML Paragraphs Expain
The HTML <p> element defines a paragraph.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>
Html Code Result:
This is a paragraph.
This is a paragraph.
This is a paragraph.
Post a Comment