**In HTML what tag can be used for a multi-line text input control?
You can use TextArea for multiline text input field in HTML as shown below:
<textarea rows = "8" cols = "55" name = "Details">
The contents can be added here. Or can be input from HTML page when displayed.
</textarea>