Open In App

HTML | <textarea> form Attribute

The HTML <textarea> form Attribute is used to specify the one or more forms that the <Textarea> element belongs to.
Syntax: 
 

<Textarea form="form_id"> 

Attribute Values: 
 



Example: 
 




<!DOCTYPE html>
<html>
 
<head>
    <title>Textarea Form Attribute</title>
    <style>
    }
    fieldset {
        width: 50%;
        margin-left: 22%;
    }
    h1 {
        color: green;
    }
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2><textarea> form Attribute</h2>
        <textarea form="mygeeks" cols="20" ;>
            GeeksForGeeks. A computer science portal for Geeks
        </textarea>
        <br>
        <form id="mygeeks">
            Name:
            <input type="text" name="usrname">
            <input type="submit">
        </form>
    </center>
</body>
 
</html>

Output: 
 



Supported Browsers: The browser supported by HTML <Textarea>form Attribute are listed below: 
 

 


Article Tags :