I have a plain <p>
tag in my HTML. Inside this HTML tag I am trying to output text as follows:
Place this code tag in the header of your website between
<head>
...</head>
in your page to show the notice to activate the functionality.
When I put this text inside the <p>
tag as follows:
'<p>Place this code tag in the header of your website between <head> ... </head> in your page to show the notice to activate the functionality.</p>'
I render this wrong output:
Place this code tag in the header of your website between ... in your page to show the notice to activate the functionality.
As you can see the output did not print the ' head ' part. How can I fix it?