Documentation and examples for typography.
The default font is{" "} Google Fonts Open Sans
Default size is 14px and the default color is black #31353B or white #F6F6F8 if the background is dark.
| Heading | Exemple | 
|---|---|
| h1 | 
        Title 1 | 
    
| h2 | 
        Title 2 | 
    
| h3 | 
        Title 3 | 
    
| h4 | 
        Title 4 | 
    
| h5 | 
        Title 5 | 
    
| h6 | 
        Title 6 | 
    
Code, using Html Tags or using classes:
Example :<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6><p class="h1">Heading 1</p>
<p class="h2">Heading 2</p>
<p class="h3">Heading 3</p>
<p class="h4">Heading 4</p>
<p class="h5">Heading 5</p>
<p class="h6">Heading 6</p>