--- id: bad87fee1348bd9aec908854 title: Label Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: تسمية Bootstrap ويلز --- ## Description
من أجل الوضوح ، دعونا تسمية كل من آبارنا مع هوياتهم. فوق بئر يسارك ، داخل عنصر col-xs-6 div ، أضف عنصر h4 بالنص #left-well . فوق بئر اليمين ، داخل عنصر col-xs-6 div ، أضف عنصر h4 بالنص #right-well .
## Instructions
## Tests
```yml tests: - text: أضف عنصر h4 إلى كل عنصر من عناصر <div class="col-xs-6"> . testString: 'assert($(".col-xs-6").children("h4") && $(".col-xs-6").children("h4").length > 1, "Add an h4 element to each of your <div class="col-xs-6"> elements.");' - text: 'يجب أن يحتوي عنصر h4 على النص #left-well .' testString: 'assert(new RegExp("#left-well","gi").test($("h4").text()), "One h4 element should have the text #left-well.");' - text: 'يجب أن يحتوي عنصر h4 على النص #right-well .' testString: 'assert(new RegExp("#right-well","gi").test($("h4").text()), "One h4 element should have the text #right-well.");' - text: تأكد من أن جميع عناصر h4 لديك علامات إغلاق. testString: 'assert(code.match(/<\/h4>/g) && code.match(/

/g).length === code.match(/

h4 elements have closing tags.");' ```

## Challenge Seed
```html

jQuery Playground

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