--- id: bad87fee1348bd9aec908850 title: Apply the Default Bootstrap Button Style challengeType: 0 videoUrl: '' localeTitle: '' --- ## Description
يحتوي Bootstrap فئة زر آخر يسمى btn-default . قم btn فئات btn و btn-default على كل عنصر من عناصر button الخاص بك.
## Instructions
## Tests
```yml tests: - text: قم btn فئة btn على كل عنصر من عناصر button الخاص بك. testString: 'assert($(".btn").length > 5, "Apply the btn class to each of your button elements.");' - text: قم btn-default فئة btn-default على كل عنصر من عناصر button الخاص بك. 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 ```