First, I wish you all a very happy and prosperous new year, may this year bring much success and fun in your life.
This year, I began to learn a new framework called “Bootstrap” that let us build responsive websites quickly.
So let's start.
What Bootstrap is: Bootstrap is a HTML, CSS and JavaScript framework to develop responsive and mobile first applications on the web. Here we see two terms, the first one is responsive. That means the website will respond to various screen sizes by automatically adjusting its layout to look good.
Example: Our C# Corner website is responsive, you can see its different look and feel on different devices such as PCs, tablets, and smartphones.

History of Bootstrap: Bootstrap began as an internal project at Twitter hence sometimes Bootstrap is known as “Twitter Bootstrap”. Two guys named Mark Otto and Jacob Thornton got management approval to open source it.
Get bootstrap
- Download it from: Ggetbootstrap (All the code of Bootstrap will be on your system).
- Include Bootstrap from the Content Delivery Network (CDN) (all the Bootstrap code is online and we only need a link for it).
Language Require to start Bootstrap: Knowledge of HTML, CSS and JavaScript.
Now Start With Bootstrap: The coding starts with <!DOCTYPE html>, it shows the version of HTML that we use.
- <!DOCTYPE html>
- <html>
- …………..
- ………..
- </html>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <!DOCTYPE html>
- <html>
- <head>
- <title>First</title>
- <link rel="stylesheet" href="css/bootstrap.min.css">
- <style>
- body
- {
- background-color:#00F;
- }
- h3
- {
- color:#CCC;
- }
- </style>
- <meta name="viewport" content="width= device-width,initial-scale=1">
- <script src="js/bootstrap.min.js"></script>
- </head>
- <body>
- <h3>HAPPY NEW YEAR 2015 We hope you are blessed with delight, fulfillment, and peace in this New Year. May the love and warmth carry you into the New Year with a joyful spirit and hopeful heart.On New Year's Day and every day, we wish you joy and fulfillment. May it brings health, prosperity and happiness to all.</h3>
- </body>
- </html>


Here you can see no loss of message after changing the size of the window. We can customize this using CSS that we will learn in a future part.
Thanks for reading. I hope you enjoy Bootstrap.

SubashPosted Sep 19, 2016, 7:53 AM
Good start
Abhijit PatilPosted Apr 17, 2015, 6:12 AM
Hey Sanjay .great keep write series till develope complete responsive templates.excisted to learn bootstrap
ROHAN PANDEYPosted Mar 11, 2015, 11:48 PM
Nice
Abhishek JaiswalPosted Jan 5, 2015, 10:02 AM
Good work.. keep it up buddy! :)
Madhuram SrivastavaPosted Jan 4, 2015, 6:43 AM
very interesting article , keep it up and hope to your next article very soon .
Sahil SharmaPosted Jan 4, 2015, 1:05 AM
very nicely explained. Expecting more articles on the same especially on glyph icons
Sam HobbsPosted Jan 3, 2015, 11:03 PM
About half a century ago word processing systems began doing this type of thing. SGML was based on one of them but when SGML was used for HTML the HTML lost this type of thing.