--- id: bad87fee1348cd8acef08813 title: Call out Optional Actions with btn-info challengeType: 0 forumTopicId: 16770 --- ## Description
Bootstrap comes with several pre-defined colors for buttons. The btn-info class is used to call attention to optional actions that the user can take. Create a new block-level Bootstrap button below your "Like" button with the text "Info", and add Bootstrap's btn-info and btn-block classes to it. Note that these buttons still need the btn and btn-block classes.
## Instructions
## Tests
```yml tests: - text: Create a new button element with the text "Info". testString: assert(new RegExp("info","gi").test($("button").text())); - text: Both of your Bootstrap buttons should have the btn and btn-block classes. testString: assert($("button.btn-block.btn").length > 1); - text: Your new button should have the class btn-info. testString: assert($("button").hasClass("btn-info")); - text: Make sure all your button elements have a closing tag. testString: assert(code.match(/<\/button>/g) && code.match(/

Things cats love:

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
```