You can now add the last class created above (`"blue-text"`) to the same example above to see the results.
```html
<h1class="red-text blue-text">Example</h1>
```
This will automatically pick the last class created in your styles section, which in this case was `"blue-text"`.
Even if you apply the 1st class `red-text` behind the 2nd class `blue-text`, the override process will pick the last created class. In this case, that class is the `blue-text`.
So, for example:
```html
<h1class="blue-text red-text">Example</h1>
```
This will still display a `blue` font color because of the ordering in the styles section.
The `blue-text` class was created last, torwards of the bottom (`</style>`).