Bootstrap is a CSS framework. Think of a framework like a giant box of pre-built Lego pieces.
Instead of writing dozens of lines of CSS to make a nice-looking, blue, rounded button, the developers at Bootstrap have already written that code for you. All you have to do is attach a specific "label" (an HTML class) to your element, and Bootstrap does the heavy lifting.
With Bootstrap, you style your website by adding classes directly to your HTML.
Want a blue button? Just type <button class="btn btn-primary">Click Me</button>.
Want your text centered? Add class="text-center". It is almost like speaking plain English to your HTML!
Top comments (0)