--- id: bad87fee1348bd8acde08812 title: Center Text with Bootstrap challengeType: 0 videoUrl: '' localeTitle: توسيط النص مع Bootstrap --- ## Description
والآن بعد أن استخدمنا Bootstrap ، يمكننا تركيز عنصر العنوان الخاص بنا لجعله يبدو أفضل. كل ما نحتاج إليه هو إضافة مركز text-center إلى عنصر h2 . تذكر أنه يمكنك إضافة عدة فئات إلى نفس العنصر عن طريق فصل كل منها بمسافة ، مثل: <h2 class="red-text text-center">your text</h2>
## Instructions
## Tests
```yml tests: - text: يجب توسيط عنصر h2 عن طريق تطبيق text-center للصف testString: 'assert($("h2").hasClass("text-center"), "Your h2 element should be centered by applying the class text-center");' - text: يجب أن h2 عنصر h2 red-text للفصل testString: 'assert($("h2").hasClass("red-text"), "Your h2 element should still have the class red-text");' ```
## 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 ```