# Inputs >> Fieldset >> Overview ||10 ```js script import { html } from '@lion/core'; import '@lion/input/define'; import '@lion/fieldset/define'; ``` A fieldset groups multiple input fields or other fieldsets together. ```js preview-story export const main = () => html` `; ``` We have three specific fieldset implementations: - [lion-form](../form/overview.md) - [lion-checkbox-group](../checkbox-group/overview.md) - [lion-radio-group](../radio-group/overview.md) A native fieldset element should always have a legend-element for a11y purposes. However, our fieldset element is not native and should not have a legend-element. Our fieldset instead has a label attribute or you can add a label with a div- or heading-element using `slot="label"`. ## Features - Easy retrieval of form data based on field names - Advanced user interaction scenarios via [interaction states](../../../docs/systems/form/interaction-states.md) - Can have [validate](../../../docs/systems/form/validate.md) on fieldset level and shows the validation feedback below the fieldset - Can disable input fields on fieldset level - Accessible out of the box ## Installation ```bash npm i --save @lion/fieldset ``` ```js import { LionFieldset } from '@lion/fieldset'; // or import '@lion/fieldset/define'; ```