Open In App

HTML | <textarea> form Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

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: 
 

  • form_id: It Contains the value i.e form_id which specify the one or more  form that the Textarea element belongs to. The value of this attribute should be id of the <form> element.

Example: 
 

html




<!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: 
 

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 6
  • Firefox 1
  • Opera 12.1
  • Safari 4

 



Last Updated : 22 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads