Label Bootstrap Wells (need help)

Tell us what’s happening:

I’ve been working on this a couple days and I’m stumped.

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" h4=#left-well>
      <div class="well" id="left-well">
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
      </div>
 
    </div>
    <div class="col-xs-6" h4=#right-well>
  <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>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0.

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

Add an h4 element to each of your <div class="col-xs-6"> elements.

What’s meant here is to nest an <h4> element in both the <div class="col-xs-6"> elements. What you did is add an h4 attribute to them (there are no such attributes).