Bootstrap panels are used to contain content into a block to make it elegent.
.panel class is used to create panel.
.panel-default class is used to style the panel with color.
.panel-body class is used to contain content inside panel.
<h4>Bootsrap Panel Example</h4>
<div class="panel panel-default">
<div class="panel-body">Panel Content is Here</div>
</div>
Output
Bootsrap Panel Example
Panel Content is Here