Html Paragraph
The Html <p> element defines a paragraph:
Example
<p> hello world </p>
Browsers automatically add some white space
(a margin) before and after a paragraph.
Don't Forget the End Tag
Most browsers will display HTML correctly even if you forget the end tag.
Dropping the end tag can produce unexpected results or errors.
Example
<p> hello world
<p> hello world
Html Line Breaks
The Html <br> element define a Linne Break .
BY the use of <br> tag you want a line break (a new line) without starting a new paragraph .
Example
<p> hello world <br>
hello world
Html pre Tag .
The HTML <pre> element defines preformatted text.
The text inside a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks:
Example
<pre>
hello world
hello world
</pre>
Some content coming soon......
HTML Paragraph.........