Bootstrap Panels
Create Basic Panels
By default, all the .panel does is apply some basic border and padding to contain some content.
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
<!--from w w w. j av a 2 s .c om-->
<script src="http://java2s.com/style/jquery-1.8.0.min.js"></script>
<script src="http://java2s.com/style/bootstrap.min.js"></script>
</head>
<body style='margin:20px;'>
<div class="panel">
Basic panel example
</div>
</body>
</html>