--- id: bad87fee1348cd8acef08813 title: Call out Optional Actions with btn-info challengeType: 0 videoUrl: '' localeTitle: استدعاء الإجراءات الاختيارية مع btn-info --- ## Description
يأتي Bootstrap مع العديد من الألوان المحددة مسبقًا للأزرار. يتم استخدام فئة btn-info للفت الانتباه إلى الإجراءات الاختيارية التي يمكن للمستخدم اتخاذها. قم بإنشاء زر Bootstrap جديد على مستوى الكتلة أسفل الزر "أعجبني" مع النص "Info" ، وأضف تصنيفات btn-info و btn-block إلى Bootstrap. لاحظ أن هذه الأزرار لا تزال بحاجة إلى فئات btn و btn-block .
## Instructions undefined ## Tests
```yml tests: - text: إنشاء عنصر button جديد مع النص "معلومات". testString: 'assert(new RegExp("info","gi").test($("button").text()), "Create a new button element with the text "Info".");' - text: '' testString: 'assert($("button.btn-block.btn").length > 1, "Both of your Bootstrap buttons should have the btn and btn-block classes.");' - text: '' testString: 'assert($("button").hasClass("btn-info"), "Your new button should have the class btn-info.");' - text: تأكد من أن جميع عناصر button لديك بها علامة إغلاق. testString: 'assert(code.match(/<\/button>/g) && code.match(/
## Challenge Seed
```html

CatPhotoApp

Click here for cat photos.

A cute orange cat lying on its back. Three kittens running towards the camera.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```
## Solution
```js // solution required ```