Display in multiple lines

I have a code shown below. When the content of the notes1 can be upto 2000. When there are more than certain number of bytes, let’s say every 80 bytes, I want to add another line to display. How would I be able to do that? Any help would be appreciated.

<tr>
<td align=“right” class=“advsearch”>Notes:</td>
<td>${form.notes1}</td>
</tr>


I think I kind of found the solution by using dojo textarea. But I am not sure how I can make it display only, not enterable.

I found solution to my previous post by using readonly property. But the text displayed in the textarea is centered. Is there a way to left justify?

Thanks