Bootstrap Panel
0 3931
Bootstrap Panel is a bordered box with some padding and box-shadow around content: The .panel-info class is used to style the color of the panel box border color.
Example:
<!DOCTYPE html>
<html lang="en">
<head>
<title> Bootstrap Panel </title>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1> Bootstrap Panel </h1>
<div class="panel panel-info">
<div class="panel-body">
onTime IT Solution learn HTML Tutorials, PHP Tutorials, CSS Tutorials, Bootstrap Tutorials and many more IT Tips and knowledge. For more details visit http://www.codingtag.com
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"> </script>
</body>
</html>
Result:
Share:
Comments
Waiting for your comments