List of HTML tags.
npm install @prettier/html-tags[![Npm Version][package_version_badge]][package_link]
[![MIT License][license_badge]][license_link]
[![Coverage][coverage_badge]][coverage_link]
[coverage_badge]: https://img.shields.io/codecov/c/github/prettier/prettier.svg?style=flat-square
[coverage_link]: https://app.codecov.io/gh/prettier/html-tags
[license_badge]: https://img.shields.io/npm/l/html-tags.svg?style=flat-square
[license_link]: https://github.com/prettier/html-tags/blob/main/license
[package_version_badge]: https://img.shields.io/npm/v/@prettier/html-tags.svg?style=flat-square
[package_link]: https://www.npmjs.com/package/@prettier/html-tags
> List of HTML tags.
``bash`
yarn add @prettier/html-tags
`js
import {htmlTags, htmlVoidTags} from '@prettier/html-tags'
console.log(htmlTags)
//=> ['a', 'abbr', 'acronym', ... 147 more items]
console.log(htmlVoidTags)
//=> ['area', 'base', 'basefont', ... 17 more items]
``