--- id: bad87fee1348bd9aec908854 title: Label Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: Etiqueta Bootstrap Wells --- ## Description
Para mayor claridad, etiquetemos nuestras cajas con sus identificadores. Por encima de la caja-izquierda (left-well), dentro de su elemento div col-xs-6 , agregue un elemento h4 con el texto #left-well . Por encima de su caja-derecha(right-well), dentro de su elemento div col-xs-6 , agregue un elemento h4 con el texto #right-well .
## Instructions
## Tests
```yml tests: - text: Agregue un elemento h4 a cada uno de sus 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: 'Un elemento h4 debe tener el texto #left-well .' testString: 'assert(new RegExp("#left-well","gi").test($("h4").text()), "One h4 element should have the text #left-well.");' - text: 'Un elemento h4 debe tener el texto #right-well .' testString: 'assert(new RegExp("#right-well","gi").test($("h4").text()), "One h4 element should have the text #right-well.");' - text: Asegúrate de que todos tus elementos h4 tengan etiquetas de cierre. 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 ```