Multiple Line Text Input form Html Controls

Multiple-Line Text Input from Html Controls

This is used when the user is required to give details that may be longer than a single sentence. Multi-line input controls are created using HTML <textarea> tag.

Multiple-Line Text Input from Html Controls This is used when the user is required to give details that may be longer than a single sentence. Multi-line input controls are created using HTML <textarea> tag.  Multiple Line Text Input form Html Controls    Example  Here is a basic example of a multi-line text input used to take an item description    Code Example:         <!DOCTYPE html> <html>     <head>       <title>Multiple-Line Input Control</title>    </head> 	    <body>       <form>          Description : <br />                </form>    </body> 	 </html>            Copy   Output:


Example

Here is a basic example of a multi-line text input used to take an item description


Code Example:




Output: Multiple-Line Input Control
Description :

Comments :

Post a Comment