Headings In HTML
HEADINGS IN HTML
<!DOCTYPE html>
<html>
<body>
<h1> Heading 1</h1>
<h2> Heading 2</h2>
<h3> Heading 3</h3>
<h4> Heading 4</h4>
<h5> Heading 5</h5>
<h6> Heading 6</h6>
</body>
</html>
Paragraph tag in HTML
HTML paragraphs are defined with the
<p> tag.
EXAMPLE:
<p>This is a Paragraph</p>
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
Output:
This is another paragraph.

Comments
Post a Comment