Multiple lines of input in <input type="text" />
You need to use a textarea to get multiline handling.
<textarea name="Text1" cols="40" rows="5"></textarea>
You can't. At the time of writing, the only HTML form element that's designed to be multi-line is <textarea>
.