HTML Paragraph Tags
HTML Paragraph Tags i.e. <p>
represent a paragraph that contains top and bottom margins. This margin is generated by default, commonly known as user agent style.
Tips:
You have to use the opening paragraph tag <p>
and closing paragraph tag </p>
. So that readability might be better.
HTML paragraph starts with <p>
tag and end with closing </p>
Tag.Please keep in mind that you have to put a closing tag at the end of the paragraph tag.
<p>This is a paragraph having by default margin.</p>
How To Eliminate By Default Margin Of The Paragraph
Tips:
p{margin:0;}