Welcome to the Bootstrap challenges, the following challenge has you making the existing content children or sub-child of a new div which would be a bootstrap container
Hints
Hint 1
Wrap all HTML code into a single <div></div>.
Hint 2
Use the class of container-fluid
Solutions
Since you have to add all the HTML in the newly created div, the following is the solution:
Solution 1 (Click to Show/Hide)
<div class="container-fluid>
</div>
NOTE: IN the above solution, the ... represents the HTML which was already present.
This exercise is a little blurry on what it wants from you. Basically it’s asking you to make a “div”, which we learned earlier is used to section off a portion of your code so that it doesn’t play by the same rules as some of the other stuff you already set up. Here, it’s asking you to make all of your code (below the style stuff) a div, and its asking you to make it a class called “container-fluid”. If you’re not sure how to make it a class, now would be the time to go back and learn it again.