HTML Paragraphs

The paragraph is an element of Html. It always starts on a new line and usually is a block of text, white text is automatically added to the remaining place by the browser.

<p>A sample of paragraph.</p>
Horizontal Rules
There is a <hr> tag that is used to separate contents. It is an empty tag, hence it does not have any end tag.
<p>Paragraph Example.</p>
<hr>
<p>Content in paragraph tag after hr tag.</p>
Line Breaks
To break lines between the paragraph content <br> tag can be used which breaks the line and show the content in next line.
<p>Paragraph text <br> Text after br tag.</p>
Html <Pre> Element Tag

Sometimes one may want to show the content as it is written, to achieve this there is a <pre> tag that shows the content inside it as it is.

<pre>
  First statement in pre text.
  
  Second statement in pre text.
</pre>