---
id: bad87fee1348bd9aec908850
title: Apply the Default Bootstrap Button Style
challengeType: 0
---
## Description
Bootstrap has another button class called btn-default.
Apply both the btn and btn-default classes to each of your button elements.
## Instructions
## Tests
```yml
tests:
- text: Apply the btn class to each of your button elements.
testString: assert($(".btn").length > 5, 'Apply the btn class to each of your button elements.');
- text: Apply the btn-default class to each of your button elements.
testString: assert($(".btn-default").length > 5, 'Apply the btn-default class to each of your button elements.');
```
## Challenge Seed
## Solution