×

Html & Html5

The World's best Software Development Study Portal

HTML Paragraph


This tag is used to define a paragraph in the web page. It is used as p to start and end /p a paragraph.
Note:Browser itself add an empty line before and after a paragraph.

Example

<p> Welcome to Ittraining classes in Gurgaon(Haryana). We provide Best training in AWS, Digital marketing </p>

Output:


Welcome to Ittraining classes in Gurgaon(Haryana). We provide Best training in AWS, Digital marketing



HTML Line Break


HTML line break defines line break i.e if you want to start new line without starting new paragraph then use break by br tag

Example

<p> Welcome to Ittraining classes in Gurgaon(Haryana). We provide <br>

Best training in AWS, Digital marketing </p>

OUTPUT


Welcome to Ittraining classes in Gurgaon(Haryana). We provide
Best training in AWS, Digital marketing