HTML <fieldset> name Attribute

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>w3wiki</h1>
    <h2>HTML fieldset name Attribute</h2>
    
    <form id="myBeginner">
        <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


Contact Us