HTML displays the paragraph content in a single line & do not add new line inside paragraph automatically. Use <br> tag to add a new line in paragraph.

Example

<html>
<body>
<p>
Hello world, How are you.<br/>
This is HTML <p></p> example
</p>
</body>
</html>