-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19challenge.html
49 lines (49 loc) · 1.45 KB
/
19challenge.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Create a Bootstrap Headline</title>
</head>
<body>
<!-- Use Comments to Clarify Code
-->
<script>
$(document).ready(function () {});
</script>
<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>
</body>
</html>