-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBootstrapTutorial.html
615 lines (535 loc) · 24.4 KB
/
BootstrapTutorial.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- If IE use the latest rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the page to the width of the device and set the zoon level -->
<meta name="viewport" content="width = device-width, initial-scale = 1">
<title>Bootstrap Tutorial</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style>
.jumbotron {
background-color: #2E2D88;
color: white;
}
/* Adds borders for tabs */
.tab-content {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding: 10px;
}
.nav-tabs {
margin-bottom: 0;
}
body {
font-size: 62.5%;
font-family: arial, sans-serif;
}
#nttLogo{
height: 100px;
width: 100px;
}
#websiteTitle{
font-size: 10em;
vertical-align: middle;
font-family: 'Pacifico', cursive;
padding-left: 15px;
color: #191970;
}
#websiteSlogan{
font-size: 5.4em;
}
/* Carousel Styling */
.slide1{
background-image: url('bkgrnd1.png');
height: 500px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.slide2{
background-image: url('bkgrnd2.png');
height: 500px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.slide3{
background-image: url('bkgrnd3.png');
height: 500px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.carousel-caption h1{
font-size: 5.4em;
font-family: 'Pacifico', cursive;
padding-bottom: .4em;
}
.carousel-caption p{
font-size: 2em;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="page-header">
<h3>With container-fluid-pageHeader tag shows the line below</h3>
</div>
<div class="jumbotron">
<p>
jumbotron
</p>
</div>
<p>
<button type="button" class="btn btn-info">info</button>
<button type="button" class="btn btn-primary btn-lg">large primary</button>
<button type="button" class="btn btn-default btn-md">medium default</button>
<button type="button" class="btn btn-warning btn-sm">small warning</button>
<button type="button" class="btn btn-primary btn-xs disabled">xs disabled</button>
<button type="button" class="btn btn-success">success</button>
<div class="btn-group btn-group-lg" role="group" aria-label="...">
<button type="button" class="btn btn-default">Left</button>
<button type="button" class="btn btn-default">Middle</button>
<button type="button" class="btn btn-default">Right</button>
</div>
</p>
<p>
<span class="glyphicon glyphicon-phone-alt" aria-hidden="true"> call-me </span>
<span class="glyphicon glyphicon-envelope" aria-hidden="true"> mail-me </span>
<span class="glyphicon glyphicon-print" aria-hidden="true"> print-me </span>
<span class="glyphicon glyphicon-bookmark" aria-hidden="true"> bookmark-me </span>
<span class="glyphicon glyphicon-tags" aria-hidden="true"> tag-me </span>
<p><a href="http://getbootstrap.com/components/"> glyphicon-icons</a></p>
</p>
</div>
<div class="container">
<h3>container</h3>
<div class="well well-sm">
<p>well surrounds the text with a rounded border and gray background. The size can be changed with well-sm or well-lg.</p>
</div>
</div>
<div class="container">
<img src="horse.png" id="horseLogo" class="img-responsive img-thumbnail pull-left" alt="Responsive image"> Images marked as responsive have a max-width equal to the screen. You can add rounded corners with img-rounded, img-circle, and img-thumbnail. pull-left and pull-right will float images in the provided direction. center-block will place the image in the center.
<div>
<span class="text-muted">text-muted</span>
<span class="text-primary"> text-primary</span>
<span class="text-success">text-success</span>
<span class="text-info">text-info</span>
<span class="text-warning">text-warning</span>
<span class="text-danger">text-danger</span>
</div>
<!-- You can set contextual backgrounds -->
<p class="bg-primary">background-primary</p>
<p class="bg-success">background-success</p>
<p class="bg-info">background-info</p>
<p class="bg-warning">background-warning</p>
<p class="bg-danger">background-danger</p>
</div>
<div class="container">
<!-- DROP DOWN MENUS -->
<!-- You can easily add a drop down menu with class dropdown, or dropup. Change button size with btn-lg, btn-sm, btn-xs
ARIA stands for Accessible Rich Internet Applications and it is used to make apps more excessible for people with disabilities. aria-haspopup states that the element has a sub menu. aria-expanded defines if the sub-menu is expanded. Full list here http://www.w3.org/TR/wai-aria/states_and_properties#aria-expanded -->
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle btn-lg" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
Favorite Hero
<!-- Display icon in button -->
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<!-- Unselectable header -->
<li class="dropdown-header">Marvel</li>
<li><a href="#">Spiderman</a></li>
<li><a href="#">Captain America</a></li>
<li><a href="#">Iron Man</a></li>
<!-- Seperates content in menu -->
<li role="separator" class="divider"></li>
<li class="dropdown-header">DC</li>
<!-- Disable menu element -->
<li class="disabled"><a href="#">Superman</a></li>
<li><a href="#">Batman</a></li>
<li><a href="#">Flash</a></li>
</ul>
</div>
</div>
<br>
<!-- INPUT GROUPS -->
<div class="container">
<!-- We can add text or buttons on the right and/or left of input elements. Use input-group-lg or input-group-sm for input sizing -->
<div class="input-group input-group-lg">
<span class="input-group-addon">Your name</span>
<input type="text" class="form-control" placeholder="Full Name">
</div>
<br>
<div class="input-group input-group-sm">
<input type="text" class="form-control" placeholder="Full Name">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Enter</button>
</span>
</div>
<br>
<!-- Create input button dropdowns. aria-haspopup states that input has a sub menu. aria-expanded closes the dropdown by default -->
<div class="row">
<div class="input-group">
<div class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">User ID <span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Google+</a></li>
</ul>
</div>
<input type="text" class="form-control" aria-label="...">
</div>
</div>
<br>
<!-- Input radio and checkboxes -->
<div class="row">
<div class="input-group">
<span class="input-group-addon">
<!-- Change to radio for radio -->
<input type="checkbox">
</span>
<input type="text" class="form-control">
</div>
</div>
</div>
<br>
<div class="container">
<ul class="list-inline">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<!-- Add a dropdown menu -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Contact
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Phone</a></li>
<li><a href="#">Email</a></li>
<li><a href="#">Achedule Appointment</a></li>
</ul>
</li>
<li><a href="#">Shop</a></li>
</ul>
</ul>
<!-- Basic vertical menu -->
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<!-- Add drop down menu -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Contact
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Phone</a></li>
<li><a href="#">Email</a></li>
<li><a href="#">Schedule Appointment</a></li>
</ul>
</li>
<li><a href="#">Shop</a></li>
</ul>
<!-- Use nav-pills, nav-tabs. To center tabs add nav-justified to the class for ul -->
<ul class="nav nav-pills">
<li class="active"><a data-toggle="tab" href="#superman">Superman</a></li>
<li><a data-toggle="tab" href="#batman">Batman</a></li>
<!-- Dropdown menu item -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Flash
<span class="caret"></span></a>
<ul class="dropdown-menu">
<!-- Disable a tab -->
<li class="disabled"><a data-toggle="tab" href="#flash">The Flash</a></li>
<li><a data-toggle="tab" href="#kidflash">Kid Flash</a></li>
</ul>
</li>
</ul>
<div class="tab-content">
<div id="superman" class="tab-pane fade in active">
<p>Superman is from DC comics</p>
</div>
<div id="batman" class="tab-pane fade">
<p>Batman is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
<div id="flash" class="tab-pane fade">
<p>The Flash is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
<div id="kidflash" class="tab-pane fade">
<p>Kid Flash is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
</div>
</div>
<div class="container">
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-ex1-collapse" <aria-expanded="false">
<span class="sr-only"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="pull-left" href="#"><img src="horse.png"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home<span class="sr-only">(current)</span></a></li>
<li><a href="#">About</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Contact Us <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Email</a></li>
<li><a href="#">Phone</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Set Appointment</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div><!-- /.navbar-collapse -->
</div>
</nav>
</div>
<br>
<div class="container">
<ul class="pagination">
<li><a href="#">«</a></li>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">»</a></li>
</ul>
</div>
<!-- Progress bar -->
<!-- Provide progress feedback to users by changing the value of style for the progress-bar (Doesn't work on IE9 or below) progress-bar-striped is optional -->
<div class="container">
<div class="progress">
<div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 40%;">
<span class="sr-only">40% Complete</span>
</div>
</div>
</div>
<!-- Media object -->
<div class="container">
<div class="media">
<!-- You can use media-top, media-middle, or media-bottom -->
<div class="media-left media-top">
<a href="#">
<img class="media-object" src="thumb1.png" alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Awesome Veggie Burger</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor...</p>
</div>
</div>
<div class="media">
<div class="media-left media-top">
<a href="#">
<img class="media-object" src="thumb2.png" alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Best Polenta Recipe</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor...</p>
<div class="media">
<a class="pull-left" href="#">
<img class="media-object" src="thumb3.png" alt="...">
</a>
<div class="media-body">
<h4 class="media-heading">Nested Media</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor...</p>
</div>
</div>
</div>
</div>
</div>
<!-- List Groups -->
<div class="container">
<ul class="list-group">
<!-- Disable elements -->
<li class="list-group-item disabled">Verizon Email ul-group starts</li>
<li class="list-group-item">
<!-- You can add badges -->
<span class="badge">badge</span>Gmail</li>
<li class="list-group-item">Sent</li>
<!-- You can style elements like warning, success, info, danger-->
<li class="list-group-item list-group-item-warning">Junk ul-ends</li>
</ul>
<!-- Add lists of links -->
<a href="#" class="list-group-item">Add Account</a>
<!-- Add any html elements in list -->
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">Delete Account -heading</h4>
<p class="list-group-item-text">The account will be permanently deleted item-text</p>
</a>
<!-- You can put buttons in the list -->
<button type="button" class="list-group-item">Check for Mail - list-item</button>
</div>
<div class="container">
<!-- col means column, md >=992px (Also use xs, sm and lg), and the 3 represents the size of the column
3 * 4 = 12 (A 6 column layout would use 2 if they had equal size) -->
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<h4>1. col-lg-3 col-md-3 col-sm-6 col-xs-12</h4>
col means column, md >=992px (Also use xs, sm and lg), and the 3 represents the size of the column 3 * 4 = 12 (A 6 column layout would use 2 if they had equal size)sodales placerat porta. Vivamus laoreet magna eget facilisis condimentum. Donec porttitor elit nibh, et mollis nunc egestas at. Vestibulum tristique vehicula ligula vel mollis. Quisque ante lectus, tincidunt maximus scelerisque in, molestie nec eros. Vestibulum finibus, lacus at gravida condimentum, tellus mauris imperdiet orci.
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<h4>Column 2</h4>
Quisque rutrum augue odio, eu placerat diam bibendum id. Donec at fringilla leo, non varius magna. Vestibulum finibus, lacus at gravida condimentum, tellus mauris imperdiet orci, a pretium justo nulla sit amet nunc. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. In fermentum ex ac lectus porttitor molestie. Sed cursus velit congue ex venenatis accumsan.
</div>
<!-- When in sm mode the 3rd column jumps up below the 2nd column. To fix it put the following right before the column that messes up using the screen mode being sm that messes up. -->
<div class="clearfix visible-sm"></div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<h4>Column 3</h4>
<b>When in sm mode the 3rd column jumps up below the 2nd column. To fix it put the following right before the column that messes up using the screen mode being sm that messes up. the solution class="clearfix visible-sm"</b> tincidunt nisl et, tristique odio. Nullam imperdiet sollicitudin neque malesuada ornare. Curabitur ultrices urna id gravida lacinia. Nunc eu neque vitae nisi luctus rhoncus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac.
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<h4>Column 4</h4>
Vestibulum vitae lacus eu metus finibus viverra vel blandit justo. Suspendisse ac sapien sapien. In a pellentesque ipsum. Donec quis venenatis lectus, at vehicula nulla. Etiam imperdiet tellus sit amet lobortis varius. Pellentesque sit amet arcu quis sem pretium luctus. Aliquam vitae neque id augue sollicitudin mattis id vitae lorem. Quisque a metus fermentum, ultricies diam non, dignissim nibh. Aliquam erat
</div>
</div>
</div><br>
<!-- For different sized columns divide up the 12 -->
<div class="container">
<div class="row">
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-12">
<!-- We can collapse or hide data on the screen -->
<h4><a href="#col1Content" data-toggle="collapse">Column 1</a></h4>
<!-- With collapse in this div shows on load -->
<div id="col1Content" class="collapse in">With collapse in this div shows on load. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean fringilla at libero at finibus a pretium justo nulla sit amet nunc. Vestibulum finibus, lacus at gravida condimentum, tellus mauris imperdiet orci.</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<h4><a href="#col2Content" data-toggle="collapse">Column 2</a></h4>
<!-- With class collapse this div won't show on load -->
<div id="col2Content" class="collapse">With class collapse this div won't show on load non varius magna. Vestibulum finibus, lacus at gravida condimentum, tellus mauris imperdiet orci, a pretium justo nulla sit amet nunc. Class aptent taciti sociosqu ad litora torquent per conubia.</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<h4><a href="#col3Content" data-toggle="collapse">Column 3</a></h4>
<div id="col3Content" class="collapse">href="#col3Content" data-toggle="collapse" ante faucibus maximus. Nunc non neque laoreet, tincidunt nisl et, tristique odio. Nullam imperdiet sollicitudin neque malesuada ornare. Curabitur ultrices urna id gravida lacinia. Nunc eu neque vitae nisi luctus rhoncus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac.</div>
</div>
</div>
</div><br>
<!-- Show / Hide elements based on screen size -->
<div class="container">
<div class="well hidden-sm hidden-md hidden-lg">
<p>Screen < 768px</p>
</div>
<div class="well hidden-md hidden-lg">
<p>Screen >= 768px and < 992px</p>
</div>
<div class="well hidden-lg">
<p>Screen >= 992px and < 1200px</p>
</div>
<div class="well">
<p>Screen > 1200px</p>
</div>
</div><br>
<div class="container">
<!-- You can constrain the columns if you want -->
<div class="row">
<!-- We could move it to the right with a blank div
<div class="col-md-6"></div> -->
<!-- Or we could use offset -->
<div class="col-md-6 col-md-offset-6">
<!-- The table class adds nice spacing and the other classes add additional style -->
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<td colspan="4">Best Baseball Players</td>
</tr>
</thead>
<tbody>
<tr>
<!-- You can adjust the width of table columns as well -->
<th class="col-md-2"></td>
<!-- Use text alignment like text-center or text-right -->
<th class="text-center">Average</td>
<th class="text-center">RBIs</td>
<th class="text-center">Homeruns</td>
</tr>
<tr>
<td><a href="#">Hank Aaron*</a></td>
<td>.305</td>
<td>2297</td>
<td>755</td>
</tr>
<tr>
<td><a href="#">Babe Ruth*</a></td>
<td>.342</td>
<td>2214</td>
<td>714</td>
</tr>
<tr>
<td><a href="#">Barry Bonds</a></td>
<td>.298</td>
<td>1996</td>
<td>762</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Carousel -->
<!-- Surround everything with a div with the class carousel slide -->
<div id="theCarousel" class="carousel slide" data-ride="carousel">
<!-- Define how many slides to put in the carousel -->
<ol class="carousel-indicators">
<li data-target="#theCarousel" data-slide-to="0" class="active"> </li >
<li data-target="#theCarousel" data-slide-to="1"> </li>
<li data-target ="#theCarousel" data-slide-to="2"> </li>
</ol >
<!-- Define the text to place over the image -->
<div class="carousel-inner">
<div class="item active" >
<div class ="slide1"></div>
<div class="carousel-caption">
<h1>Amazing Backgrounds</h1>
<p>Thousands of Backgrounds for Free</p>
<p><a href="#" class="btn btn-primary btn-sm">Get them Now</a></p>
</div>
</div>
<div class="item">
<div class="slide2"></div>
<div class="carousel-caption">
<h1>Thousands of Colors</h1>
<p>Every Color you can Imagine</p>
</div>
</div>
<div class="item">
<div class="slide3"></div>
<div class="carousel-caption">
<h1>Amazing Illustrations</h1>
<p>And they are All Free</p>
</div>
</div>
</div>
<!-- Set the actions to take when the arrows are clicked -->
<a class="left carousel-control" href="#theCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"> </span>
</a>
<a class="right carousel-control" href="#theCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>