Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson

Text Area:-

टेक्स्ट एरिया एक मल्टीलाइन टेक्स्ट फील्ड है। एक users टेक्स्ट area में unlimited number में characters लिख सकता है।

<textarea>……</textarea>

Attribute

Value

Description

cols

number

टेक्स्ट area की visible widthspecify करता है

disabled

disabled

इस attributes की मदद से input field को disabled किया जाता है।

maxlength

number

इसके द्वारा यह स्पेशिफाई किया जाता है कि इसमें अधिकतम कितने कैरेक्टर्स आयेगें

name

text

इस attribute का use एक particular नाम देने के लिए किया जाता है

placeholder

text

इस attribute से<textarea> element के लिए simple text hint दी जाती है

readonly

readonly

इस attribute के साथ दिया हुआ<input> tag सिर्फ read किया जा सकता है, लेकिन उसपर write नहीं किया जा सकता है

required

required

Required Attributes यह दर्शाता है की input field मे Value अनिवार्य है

rows

number

टेक्स्ट area में दिखाई देने वाली lines की संख्या specify करता है

 

Text Area:-

A text area is a multiline text field. A user can write unlimited number of characters in the text area.

<textarea>……</textarea>

Attribute

Value

Description

cols

number

Specifies the visible width of a text area

disabled

disabled

Specifies that a text area should be disabled

maxlength

number

Specifies the maximum number of characters allowed in the text area

name

text

Specifies a name for a text area

placeholder

text

Specifies a short hint that describes the expected value of a text area

readonly

readonly

Specifies that a text area should be read-only

required

required

Specifies that a text area is required/must be filled out

rows

number

Specifies the visible number of lines in a text area

error: Content is protected !!