Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

692 B

title
title
Call out Optional Actions with btn-info

Call out Optional Actions with btn-info


Problem Explanation

This challenge requires you to create a new block level <button> element with some required classes.


Hints

Hint 1

The new button should be below the like button.

Hint 2

The button should have at least 3 classes.

Hint 3

The button should have the classes of btn, btn-block and btn-info.


Solutions

Solution 1 (Click to Show/Hide)

Add the following line of HTML below the like button to complete the challenge:

<button class="btn-info btn-block btn">Information</button>