-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path30-label-bootstrap-buttons.html
33 lines (31 loc) · 1.51 KB
/
30-label-bootstrap-buttons.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- Label Bootstrap Buttons
Just like we labeled our wells, we want to label our buttons.
Give each of your button elements text that corresponds to its id selector.
- Your button element with the id target1 should have the text #target1.
- Your button element with the id target2 should have the text #target2.
- Your button element with the id target3 should have the text #target3.
- Your button element with the id target4 should have the text #target4.
- Your button element with the id target5 should have the text #target5.
- Your button element with the id target6 should have the text #target6.
-->
<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" id="target1">#target1</button>
<button class="btn btn-default target" id="target2">#target2</button>
<button class="btn btn-default target" id="target3">#target3</button>
</div>
</div>
<div class="col-xs-6">
<h4>#right-well</h4>
<div class="well" id="right-well">
<button class="btn btn-default target" id="target4">#target4</button>
<button class="btn btn-default target" id="target5">#target5</button>
<button class="btn btn-default target" id="target6">#target6</button>
</div>
</div>
</div>
</div>