--- id: bad87fee1348cd8acdf08812 title: Create a Bootstrap Button challengeType: 0 videoUrl: '' localeTitle: Crie um botão de bootstrap --- ## Description
O Bootstrap tem seus próprios estilos para elementos de button , que parecem muito melhores que os simples HTML. Crie um novo elemento de button abaixo da sua foto grande de gatinho. Dê-lhe as classes btn e btn-default , assim como o texto de "Like".
## Instructions
## Tests
```yml tests: - text: Crie um novo elemento de button com o texto "Like". testString: 'assert(new RegExp("like","gi").test($("button").text()) && ($("img.img-responsive + button.btn").length > 0), "Create a new button element with the text "Like".");' - text: 'Seu novo botão deve ter duas classes: btn e btn-default .' testString: 'assert($("button").hasClass("btn") && $("button").hasClass("btn-default"), "Your new button should have two classes: btn and btn-default.");' - text: Certifique-se de que todos os seus elementos de button tenham uma tag de fechamento. 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 ```