Last updated on October 4, 2019
Definition :
- this is a tag which is meant for displaying the content in the form of a paragraph on the webpage
- & nbsp stands for no breaking space
Program :
<html>
<body>
<p align=”left”> Hello </p>
<p> </p>
<p align=”right”> Hello </p>
<p> </p>
<p align=”center”> Hello </p>
<p>   </p>
</body>
</html>
Be First to Comment