--- id: bad87fee1348bd9aec908850 title: Apply the Default Bootstrap Button Style challengeType: 0 guideUrl: 'https://guide.freecodecamp.org/certificates/apply-the-default-bootstrap-button-style' --- ## 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 - 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
```html

jQuery Playground

```
## Solution
```js // solution required ```