What is the text area?

Asked By 30 points N/A Posted on -
qa-featured

Hello,

What is the text area? How does it work? Where does it use? Please tell me about details. Is text area important to web page?

SHARE
Best Answer by Transmote Pilos
Best Answer
Best Answer
Answered By 5 points N/A #163267

What is the text area?

qa-featured

Hello,

Usually text area is used to make address input by the web site.

It is just like input box, but this is multiple line text input box.

Example:

You can follow above structure.

Thanks.

Answered By 5 points N/A #163268

What is the text area?

qa-featured

Text area, or a text window, is an area on a web page in which one can be type any Text.  The Text Area can be stretching horizontally as well as Vertically to put Text on it.

Answered By 0 points N/A #163269

What is the text area?

qa-featured

 

A text area also called as text window in which text fields that can span several lines. A text area can hold an unlimited number of characters, and the text depicts in a fixed-width font.
Syntax of TEXTAREA is <textarea> ………………..</textarea> 
 
<textarea> : It defines a multi-line text input control.
 
Example of text area:  
<form>
<textarea name="txtarea1">TEXT to be inserted…</textarea>
  <input type="submit">
</form>
 
You can add column and row size in <textarea> tag…..
<textarea name="txtarea1" COLS=50 ROWS=20>TEXT to be inserted…</textarea>
 
Thank You………..

Related Questions