Open In App

HTML <fieldset> name Attribute

Last Updated : 26 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <fieldset> name Attribute is used to specify the name for the Fieldset element. It is used to reference the form data after submitting the form or to reference the element in JavaScript. 

Syntax: 

<fieldset name="text"> 

Attribute Values: It contains the value i.e. name which specifies the name for the fieldset element. 

Example: In this example, we will use  HTML <fieldset> name Attribute

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML fieldset name Attribute
    </title>
    <style>
        fieldset {
            width: 50%;
            margin-left: 22%;
        }
        h1 {
            color: green;
        }
        button {
            margin-left: 35%;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>HTML fieldset name Attribute</h2>
    
    <form id="myGeeks">
        <div class="title">
            Suggest article for video:
        </div>
        <fieldset id="GFG" name="Geek_field">
            <legend>JAVA:</legend>
            Title:
            <input type="text">
            <br> Link:
            <input type="text">
            <br> User ID:
            <input type="text">
        </fieldset>
    </form>
    <br>
</body>
  
</html>


Output: 

Supported Browsers: 

  • Google Chrome
  • Edge 12 and above
  • Firefox
  • Opera
  • Apple Safari
  • Internet Explorer


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads