Panels with Footer - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Panel

Introduction

You can add footer section to your panels using the .panel-footer class.

The panel's footer can be used to wrap buttons or secondary text.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Example of Bootstrap 3 Panels with Footer</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
 </head><!--  w  w  w .  j  a va  2 s .  co m-->
 <body>
  <div>
   <div class="panel panel-default">
    <div class="panel-body">
     test test test test test test test test
    </div>
    <div class="panel-footer clearfix">
     <div class="pull-right">
      <a href="#" class="btn btn-primary">Learn More</a>
      <a href="#" class="btn btn-default">Go Back</a>
     </div>
    </div>
   </div>
  </div>
 </body>
</html>

Related Tutorials