HTML TextBox


- Basic HTML Textbox Code
- Readonly Textbox Code
- Disabled Textbox Code

Copy the code above a box and paste it in the box. Write your text where it says WRITE YOUR TEXT.
If you want to edit the size focus: rows="7" cols="50". Change the numbers if you want to change the size.
Copy the whole code in the box and paste anywhere you want.

To the right we display the examples.

Basic HTML Textbox Code

<!-- Codes by HTMLcodes.me -->
<textarea rows="7" cols="50">
WRITE YOUR TEXT
</textarea>
<p><a  href="
http://www.htmlcodes.me/textboxes/html-textbox-code.cfm"></a></p>

Readonly Textbox Code

<!-- Codes by HTMLcodes.me -->
<form action="http://www.htmlcodes.me/textboxes/thankyou.cfm">
<textarea rows="7" cols="50" name="textbox_message" readonly="readonly">
WRITE YOUR TEXT
</textarea>
<p><a  href="
http://www.htmlcodes.me/textboxes/html-textbox-code.cfm"></a></p>

Disabled Textbox Code

<!-- Codes by HTMLcodes.me -->
<textarea rows="7" cols="50" name="textbox_message" disabled="disabled" title="">
WRITE YOUR TEXT
</textarea>
<p><a  href="
http://www.htmlcodes.me/textboxes/html-textbox-code.cfm"></a></p>