Lesson: Responsive Design with Bootstrap
Call out Optional Actions with Button Info
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.
Create a new
button
element with the text "Info". Both of your Bootstrap buttons should have the
btn
and btn-block
classes. Your new button should have the class
btn-info
. Make sure all your
button
elements have a closing tag. href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css"
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
class="container-fluid"
class="red-text text-center"CatPhotoApp
Click here for href="#"cat photos.
href="#" class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "
src="https://bit.ly/fcc-running-cats" class="img-responsive" alt="Three kittens running towards the camera. "
class="btn btn-block btn-primary"Like
Things cats love:
Correct, congratulations!
Next problem: Warn your Users of a Dangerous Action
Try again
The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.