0

I am trying to write It looks this way because the HTML tag <p> is does not skip lines without a break, <br> tag. on my html page but it always cuts off the tags. How can I leave them on the page?

Grady D
  • 1,889
  • 6
  • 30
  • 61

1 Answers1

3

use &lt; and &gt;

like this : &lt;p&gt;i am in a p tag&lt;/p&gt;

result is: <p>i am in a p tag</p>

mehdi
  • 1,755
  • 2
  • 15
  • 21