Panel footer
We can add footnotes to the panel, just put the button or the sub-text in the <div> with Class . Panel-footer . The following example demonstrates this:
<! DOCTYPE html>
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
<title>bootstrap Experience Example: Panel footer </title>
<meta charset= "Utf-8"/>
<meta name= "viewport" content= "width=device-width,initial-scale=1.0"/>
<link rel= "stylesheet" href= "Bootstrap-3.3.5-dist/css/bootstrap.min.css"/>
<body>
<div style= "padding:20px" >
<div class= "Panel Panel-default" >
<div class= "Panel-heading" >
The title of the panel
</div>
<div class= "Panel-body" >
This is the theme of the panel
</div>
<div class= "Panel-footer" >
This is the footer of the panel
</div>
</div>
</div>
<script src= "Jquery/jquery-2.1.4.js" ></script>
<script src= "Bootstrap-3.3.5-dist/js/bootstrap.min.js" ></script>
</body>
Bootstrap Experience Example: Panel footer