Links are elements that change the url of the page whereas buttons interact with the page. The Colour of links and buttons
is dictated by the theme of it ancestor. You cannot control the individual colour of a link.

## Links

There are 3 different types of links in brAND.

### Primary link

Primary links are used to navigate to second-level pages on a website and should inherit the theme of the page or module.

```html
<a href="#" class="link-primary">This page...</a>
```

### Secondary link

Secondary links are used to navigate to third-level pages on your website.

```html
<a href="#" class="link-secondary">That page...</a>
```

### Standard link

There's no extra classes used for regular links. 

```html
<a href="#">A link</a>
```

### External links

An icon can be added to links that signify that they leave the current domain. These can be applied to any
type of link.

```html
<a href="#" class="link-secondary link--external">
    Another website...
</a> 
```
