Add Elements within your Bootstrap Wells 2

Tell us what’s happening:
im not understanding this

Your code so far

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <div class="well">



      </div>
    </div>
    <div class="col-xs-6">
      <div class="well">



      </div>
    </div>
  </div>
</div>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/add-elements-within-your-bootstrap-wells

What part aren’t you understanding?

where to put the buttons

Inside of each of the well elements.

still not under standing

Putting one HTML element inside another means putting it between the tags.

If I said to put the cookie element inside the milk element it would look like this:

<milk>
    <cookie>CHOCOLATE CHIP</cookie>
</milk>