Sha256: 86565f3560d4b8a3c2c9aa6f56587826230ee90fec6f1198091295218c7c73f1
Contents?: true
Size: 665 Bytes
Versions: 23
Compression:
Stored size: 665 Bytes
Contents
# html-tags [](https://travis-ci.org/sindresorhus/html-tags) > List of standard HTML tags It's just a couple of JSON files that can be used in any environment. It intentionally leaves out obsolete tags. ## Install ``` $ npm install html-tags ``` ## Usage ```js const htmlTags = require('html-tags'); console.log(htmlTags); //=> ['a', 'abbr', 'acronym', …] ``` And void (self-closing) tags: ```js const voidHtmlTags = require('html-tags/void'); console.log(voidHtmlTags); //=> ['area', 'base', 'br', …] ``` ## License MIT © [Sindre Sorhus](https://sindresorhus.com)
Version data entries
23 entries across 23 versions & 1 rubygems