--- id: bad87fee1348cd8acdf08812 title: Create a Bootstrap Button challengeType: 0 --- ## Description
Bootstrap has its own styles for button elements, which look much better than the plain HTML ones. Create a new button element below your large kitten photo. Give it the btn and btn-default classes, as well as the text of "Like".
## Instructions
## Tests
```yml tests: - text: Create a new button element with the text "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: 'Your new button should have two classes: btn and btn-default.' testString: 'assert($("button").hasClass("btn") && $("button").hasClass("btn-default"), ''Your new button should have two classes: btn and btn-default.'');' - text: Make sure all your button elements have a closing tag. 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
```html

CatPhotoApp

Click here for cat photos.

A cute orange cat lying on its back. Three kittens running towards the camera.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```