How to groups related elements in a form using HTML ? (original) (raw)

Last Updated : 13 Feb, 2023

The

tag in HTML5 is used to make a group of related elements in the form and it creates the box over the elements. The tag is new in HTML5.

Syntax:

Contents...

Attribute:

Example:

HTML `

How to groups related elements in a form using HTML?
<style>
    h1,
    h2,
    .title {
        text-align: center;
    }

    fieldset {
        width: 50%;
        margin-left: 22%;
    }

    h1 {
        color: green;
    }
</style>

GeeksforGeeks

<h2>
    How to groups related elements
    in a form using HTML?
</h2>

<form>
    <div class="title">
        Suggest article for video:
    </div>

    <fieldset>
        <legend>JAVA:</legend>
        Title: <input type="text"><br>
        Link: <input type="text"><br>
        User ID: <input type="text">
    </fieldset>
    <br>
    <fieldset>
        <legend>PHP:</legend>
        Title: <input type="text"><br>
        Link: <input type="text"><br>
        User ID: <input type="text">
    </fieldset>
</form>

`

Output:

Supported Browsers: