HTML CSS examples for HTML Tag:textarea
Make TextArea non-editable
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from ww w. jav a 2 s. c o m--> <body> <textarea readonly rows="5" columns="100">This is a readonly text</textarea> </body> </html>