# Content >> Accordion >> Overview ||10 `lion-accordion` is a component used to toggle the display of sections of content. Its purpose is to reduce the need to scroll when presenting multiple sections of content on a single page. Accordions often allow users to get the big picture before focusing on details. ```js script import { html } from '@lion/core'; import '@lion/accordion/define'; ``` ```js preview-story export const main = () => html`

Lorem ipsum dolor sit, amet consectetur adipisicing elit.

Laboriosam sequi odit cumque, enim aut assumenda itaque quis voluptas est quos fugiat unde labore reiciendis saepe, iure, optio officiis obcaecati quibusdam.

`; ``` ## Features - content gets provided by users (slotted in) - handles accessibility - support navigation via keyboard ## Installation ```bash npm i --save @lion/accordion ``` ```js import { LionAccordion } from '@lion/accordion'; // or import '@lion/accordion/define'; ``` ## Rationale ### Contents are not focusable Focusable elements should be interactive. Contents themselves do not offer any interactivity. If there is a button or a form inside the tab panel then these elements get focused directly.