--- id: bad87fee1348bd9aec908854 title: Label Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: Rótulo Bootstrap Wells --- ## Description
Por uma questão de clareza, vamos rotular ambos os nossos poços com os seus ids. Acima do seu lado esquerdo, dentro do elemento div col-xs-6 , adicione um elemento h4 com o texto #left-well . Acima do seu lado direito, dentro do elemento div col-xs-6 , adicione um elemento h4 com o texto #right-well .
## Instructions
## Tests
```yml tests: - text: Adicione um elemento h4 a cada um de seus elementos <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: 'Um elemento h4 deve ter o texto #left-well .' testString: 'assert(new RegExp("#left-well","gi").test($("h4").text()), "One h4 element should have the text #left-well.");' - text: 'Um elemento h4 deve ter o texto #right-well .' testString: 'assert(new RegExp("#right-well","gi").test($("h4").text()), "One h4 element should have the text #right-well.");' - text: Certifique-se de que todos os seus elementos h4 tenham tags de fechamento. 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 ```