HTML Paragraphs Explain
HTML paragraphs are defined with the <p> tag.
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