A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-fieldset-name-attribute/ below:

HTML <fieldset> name Attribute - GeeksforGeeks

HTML <fieldset> name Attribute

Last Updated : 26 Feb, 2024

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: 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4