How to create Bootstrap Container Code - WPB Tutorials

Wednesday, 21 February 2018

How to create Bootstrap Container Code

Download Bootstrap




The .container class provides a responsive fixed width container

Code:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Boostarp Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
<h2>This is my first Bootstrap Example</h2>
<p>This is container code</p>
</div>


</body>
</html>


No comments:

Post a Comment

HTML Elements