How to add a new line in textarea element?
Break enter Keyword line in Textarea using CSS:
white-space: pre-wrap;
Try this one:
<textarea cols='60' rows='8'>This is my statement one. This is my statement2</textarea>
Line Feed and
Carriage Return are HTML entitieswikipedia. This way you are actually parsing the new line ("\n") rather than displaying it as text.