Headers can be used in a 'traditional' way and will work perfectly. However, if you choose to use HTML5 sectioning 
(`<section>` or `<article>`), then you may use helper classes to achieve the same look as their traditional semantic counterparts.

## Heading 1

```html
<h1>Heading 1</h1> 
```

can also be achieved with a helper class...

```html
<h2 class="heading-1">Heading</h2>
```

## Heading 2

```html
<h2>Heading 2</h2>

<!-- or -->

<span class="heading-2"></span>
```

## Heading 3

```html
<h3>Heading 3</h3>

<!-- or -->

<span class="heading-3"></span>
```
