DEV Community

RajeshKumarYadav.com
RajeshKumarYadav.com

Posted on • Updated on

HTML : Paragraphs

Paragraphs are the most basic HTML element. This topic explains and demonstrates the usage of the paragraph element in HTML.

The HTML <p> element defines a paragraph:

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
Enter fullscreen mode Exit fullscreen mode

Display

You cannot be sure how HTML will be displayed. Large or small screens, and resized windows will create different results.

With HTML, you cannot change the output by adding extra spaces or extra lines in your HTML code. The browser will remove any extra spaces and extra lines when the page is displayed:

 <p>This               is another paragraph,       extra spaces will be                    removed by           browsers</p>
Enter fullscreen mode Exit fullscreen mode

Buy Me A Coffee

With all that being said, I highly recommend you keep learning!

Thank you for reading this article. Please feel free to connect with me on LinkedIn and Twitter.

Top comments (0)