Label Bootstrap Wells...plz help

I stuck here…

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</h4>

      <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</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>
  </div>
</div>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Android 7.0; Mobile; rv:58.0) Gecko/58.0 Firefox/58.0.

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

Stuck how? Is there a part of the instructions you don’t understand? What do the failing tests say? What solutions have you tried that didn’t work? What did you learn from those?

Look carefully at exactly what text is expected in each h4. You wrote something different.

I don’t understand the middle two problems. how I solve these two

you have id=“left-well” in the div, it should be where? re-read the instructions it tells you where in there

plz give the solution in screenshot

I told you what was wrong. The text in your h4 elements must exactly match the expected text.

yes, u r right. now I have done it. thanks a lot… what a silly mistake I did.


<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
<div class="col-xs-6"><h4 >#left-well</h4>
      <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">
<div class="col-xs-6"><h4 >#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>
  </div>
</div>

``