This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstraptut.html
679 lines (596 loc) · 24.4 KB
/
bootstraptut.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
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
<!DOCTYPE html>
<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">
<!--
List of changes I found (so far) to make it work with bootstrap 4.1.1:
1) "collapse in" replaced by "collapse show".
2) btn-default removed. Can use btn-light.
3) well replaced by card.
4) hidden replaced by d-none (and d-block).
5) Glyphicons not supported.
-->
<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;
}
</style>
</head>
<body>
<!-- CONTAINERS -->
<!-- container puts padding around itself while container-fluid fills the whole screen. Bootstap grids require a container. -->
<div class="container">
<!-- page-header adds space aroundtext and enlarges it. It also adds an underline at the end -->
<div class="page-header">
<h1>Bootstrap Tutorial</h1>
</div>
<!-- jumbotron enlarges fonts and puts everything in a gray box with rounded corners. If jumbotron is outside a container it fills the total width. You can change the styles by placing the changes after the Bootstrap CDN link -->
<div class="jumbotron">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua.
</p>
<!-- BUTTONS -->
<!-- There are many built in button colors and sizes. If a link is to trigger in page functionality it should use role="button". The button element should be used in most situations -->
<p>
<a href="#" class="btn btn-default btn-lg" role="button">More info</a>
<button type="submit" class="btn btn-danger" role="button">Button</button>
<input type="button" value="Info" class="btn btn-info">
<button type="submit" class="btn-primary btn-sm">Primary</button>
<button type="submit" class="btn btn-success btn-xs">Success</button>
<button type="submit" class="btn btn-warning btn-lg">Warning</button>
<button type="submit" class="btn btn-link btn-lg">Link</button>
<!-- You can disable buttons with disabled -->
<button type="button" class="btn btn-lg btn-primary" disabled="disabled">Primary</button>
<!-- You disable links in a similar way -->
<a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
<!-- You can group buttons. You can size the buttons with btn-group-lg, btn-group-sm, or btn-group-xs -->
<div class="btn-group btn-group-lg" role="group" aria-label="...">
<button type="button" class="btn btn-default">Small</button>
<button type="button" class="btn btn-default">Medium</button>
<button type="button" class="btn btn-default">Large</button>
</div>
</p>
<!-- bootstraptut2.html -->
<!-- ICONS -->
<!-- Bootstrap has hundreds of free icons. http://getbootstrap.com/components/#glyphicons They can be used on their own or inside of buttons with a link or regular button for example. -->
<p>
<span class="glyphicon glyphicon-film"></span>
<a href="#" class="btn btn-primary btn-lg">Trash
<span class="glyphicon glyphicon-trash"></span>
</a>
<button type="button" class="btn btn-default btn-lg">
<!-- aria-hidden hides decorative icons from screen readers -->
<span class="glyphicon glyphicon-phone-alt" aria-hidden="true"></span> Call Me
</button>
</p>
</div>
</div>
<div class="container">
<!-- well surrounds the text with a rounded border and gray background. The size can be changed with well-sm or well-lg -->
<div class="card card-sm">
<p>Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 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.</p>
</div>
<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>
</div>
<div class="container">
<!-- ROUNDED IMAGES -->
<!-- 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. -->
<img src="ntt-logo.png" id="nttLogo" class="img-responsive img-thumbnail pull-left" alt="Responsive image">
<!-- CONTEXTUAL COLORS -->
<!-- Contextual colors can be added to text -->
<p>
<span class="text-muted">Quis nostrud</span>
<span class="text-primary">exercitation ullamco</span>
<span class="text-success">laboris nisi</span>
<span class="text-info">ut aliquip</span>
<span class="text-warning">ex ea commodo</span>
<span class="text-danger">consequat.</span> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<!-- You can set contextual backgrounds -->
<p class="bg-primary">Duis aute irure dolor</p>
<p class="bg-success">In reprehenderit</p>
<p class="bg-info">In voluptate velit</p>
<p class="bg-warning">Esse cillum dolore eu</p>
<p class="bg-danger">Fugiat nulla pariatur</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>
<!-- NAVIGATION ELEMENTS -->
<div class="container">
<!-- Basic horizontal menu -->
<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>
<!-- 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 a fictional superhero appearing in American comic books published by 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>
<!-- Collapsible Navigation Bar -->
<div class="container">
<!-- .navbar-fixed-top, or .navbar-fixed-bottom can be added to keep the nav bar fixed on the screen -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<!-- Button that toggles the navbar on and off on small screens -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
<!-- Hides information from screen readers -->
<span class="sr-only"></span>
<!-- Draws 3 bars in navbar button when in small mode -->
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- You'll have to add padding in your image on the top and right of a few pixels (CSS Styling will break the navbar) -->
<a class="pull-left" href="#">
<img src="NTTLogosm.png">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<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>
<!-- navbar-left will move the search to the left -->
<form class="navbar-form navbar-right" 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>
<!-- /.container-fluid -->
</nav>
</div>
<br>
<!-- Pagination -->
<div class="container">
<nav>
<ul class="pagination">
<li>
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</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="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
</div>
<br>
<!-- Thumbnails -->
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">
<div class="thumbnail">
<img src="thumb1.png" alt="...">
<div class="caption">
<h3>Hamburger</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.</p>
<p>
<a href="#" class="btn btn-primary" role="button">Add to Cart</a>
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">
<div class="thumbnail">
<img src="thumb2.png" alt="...">
<div class="caption">
<h3>Polenta</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.</p>
<p>
<a href="#" class="btn btn-primary" role="button">Add to Cart</a>
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">
<div class="thumbnail">
<img src="thumb3.png" alt="...">
<div class="caption">
<h3>Meatball Sub</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.</p>
<p>
<a href="#" class="btn btn-primary" role="button">Add to Cart</a>
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">
<div class="thumbnail">
<img src="thumb4.jpg" alt="...">
<div class="caption">
<h3>Eggplant</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.</p>
<p>
<a href="#" class="btn btn-primary" role="button">Add to Cart</a>
</p>
</div>
</div>
</div>
</div>
</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>
</div>
</div>
<!-- Media List -->
<div class="container">
<h3>What did you Eat for Lunch?</h3>
<div class="media">
<!-- class media , to create media element-->
<a class="pull-left" href="#">
<img class="media-object" src="thumb1.png" alt="...">
</a>
<div class="media-body">
<h4 class="media-heading">A Ate a 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">
<!-- class media , to create media element -->
<a class="pull-left" href="#">
<img class="media-object" src="thumb4.jpg" alt="...">
<!-- media-object 2 -->
</a>
<div class="media-body">
<h4 class="media-heading">Eggplant Parmesan</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>
<!-- Nested Media : Was placed before the closing media-body div element -->
<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">My Veggie Meatball Sub was Awesome</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>
<!-- media-body for Eggplant closes here -->
</div>
</div>
<!-- List Groups -->
<div class="container">
<ul class="list-group">
<!-- Disable elements -->
<li class="list-group-item disabled">Verizon Email</li>
<li class="list-group-item">
<!-- You can add badges -->
<span class="badge">123</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</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</h4>
<p class="list-group-item-text">The account will be permanently deleted</p>
</a>
<!-- You can put buttons in the list -->
<button type="button" class="list-group-item">Check for Mail</button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>