Basically Jumbotron in Bootstrap specifies some special content written for a particular purpose in a big box which provides extra information.
Any valid HTML or other Bootstrap elements can be included inside a jumbotron.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>EVON Technologies Dehradun</h1>
<p>Basically Jumbotron in Bootstrap specifies some special content written for a particular purpose in a big box which provides extra information.</p>
</div>
<p>This is some text.</p>
<p>This is another text.</p>
</div>
</body>
</html>
0 Comment(s)