Label Bootstrap Wells - What's wrong with this!? Cannot seem to pass h4 div tags

Tell us what’s happening:

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <h4>  <div class="col-xs-6"> </h4>
   <h4> <div class="well" id="left-well">#left-well</h4>
    <button class="btn btn-default target"></button>
    <button class="btn btn-default target"></button>
    <button class="btn btn-default target"></button>
  </div>
</div>
    <h4> <div class="col-xs-6"> </h4>
  <h4 #right-well>#right-well</h4>

  <div class="well" id="right-well">
    <button class="btn btn-default target"></button>
    <button class="btn btn-default target"></button>
    <button class="btn btn-default target"></button>
  </div>
</div>```

**Link to the challenge:**
https://www.freecodecamp.org/challenges/label-bootstrap-wells

@mcne65 Try moving the <h4> element around so it’s not encompassing any of the bootstrap stuff, like this:

<h4>Right well</h4>

This may mean putting the h4 element above or below the bootstrap. Experiment with that and you should get it.

Typically, you don’t want to have code like this:

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

You’ll want this instead:

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