Commonly we use textbox & textarea to write text by keyboard.But there is another control which can be used for the same pupose. Its DIV.
Generally Div is used as container of other control or to show readonly text by setting the following property of div:
contentEditable = "true"
It will work same as textarea/textbox for typing using keyboard.