### Headings The HTML `

` elements represent six levels of section headings.

is the highest section level and `

` is the lowest. ###### Usage Notes * Heading information may be used by user agents, for example, to construct a table of contents for a document automatically. * Do not use lower levels to decrease heading font size: use the CSS font-size property instead. * Avoid skipping heading levels: always start from `

`, next use `

` and so on. You should consider avoiding using `

` more than once on a page. #### Heading 1 ```jsx const H1 = require('/').H1;

Inspire the lazy

``` #### Heading 2 ```jsx const H2 = require('/').H2;

Inspire the lazy

``` #### Heading 3 ```jsx const H3 = require('/').H3;

Inspire the lazy

``` #### Heading 4 ```jsx const H4 = require('/').H4;

Inspire the lazy

``` ### Paragraph The HTML `

` element represents a paragraph of text. Paragraphs are usually represented in visual media as blocks of text that are separated from adjacent blocks by vertical blank space and/or first-line indentation. Paragraphs are block-level elements. ```jsx const P = require('/').P;

Joyent experts provide 360 degree support for modern application architectures, including development frameworks, container orchestration tools, and hybrid cloud infrastructures.

``` ### Small The HTML `` element makes the text font size one size smaller (for example, from large to medium, or from small to x-small) down to the browser's minimum font size. In HTML5, this element is repurposed to represent side-comments and small print, including copyright and legal text, independent of its styled presentation. ```jsx const Small = require('/').Small; Triton is 100% open source and designed to eliminate cloud provider lock-in. With support for popular container management tools like Kubernetes, augmented by our own open source project ContainerPilot, we are working with the community to deliver simple to operate platform services that are open and portable. ``` ### Label The HTML `