paragraph alignment in html code example
Example 1: center p html
<p style="text-align: center">this is centered</p>
Example 2: html text alignment
<p style="text-align: left;"> Left alignment </p>
<p style="text-align: right;"> Right alignment </p>
<p style="text-align: center;"> Center Align </p>
<p style="text-align: justify;"> Justify to width </p>