Is there any way that I could display HTML snippets in HTML page using textarea??
the following code is work
<textarea readonly='true'>
<h1>Hello World</h1>
<p>This is some text</p>
</textarea>
But when I put <textarea>
tag in textarea is not work
<textarea readonly='true'>
<textarea arows="4" cols="50">Hello World</textarea>
</textarea>
any idea to Display textarea snippets in textarea
tag??
Thank you very much