c4f0686bc53addfb5da485516c02cd2ef49ff7ac691865e061c97bf2851e77724e738f6773dfca775306409bee3b7ccaf12b2e3436e68869bed9d61ee41ddb 665 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # html-tags [![Build Status](https://travis-ci.org/sindresorhus/html-tags.svg?branch=master)](https://travis-ci.org/sindresorhus/html-tags)
  2. > List of standard HTML tags
  3. It's just a couple of JSON files that can be used in any environment.
  4. It intentionally leaves out obsolete tags.
  5. ## Install
  6. ```
  7. $ npm install html-tags
  8. ```
  9. ## Usage
  10. ```js
  11. const htmlTags = require('html-tags');
  12. console.log(htmlTags);
  13. //=> ['a', 'abbr', 'acronym', ...]
  14. ```
  15. And void (self-closing) tags:
  16. ```js
  17. const voidHtmlTags = require('html-tags/void');
  18. console.log(voidHtmlTags);
  19. //=> ['area', 'base', 'br', ...]
  20. ```
  21. ## License
  22. MIT © [Sindre Sorhus](https://sindresorhus.com)