Open In App
Related Articles

HTML
name Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Last Updated : 23 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials