Online Forum To Support Coders With Technical Assistance - Read Write Execute

Bootstrap Basics : Getting started

Aman Agrawal
Aman Agrawal
Published on August 8, 2015 · 2 min read

So if you are beginner you have to go through this page or else you can skip to the next tutorial.

What is Bootstrap?

Basically what is bootstrap? As mentioned in introductory  part this is a front-end framework for making the web pages easier.But how???

As we know , we use CSS classes to make our web page look better and richer. So Bootstrap is nothing but a  set of pre-defined classes which can be used further in our web page to make it better and of course in a fast manner.

 

What Do I need to install?

As of now you don’t need to install anything on your system use it until you are not experimenting your web page in offline mode.

You just need to include below three lines  in your <  head > tag to ensure the loading of bootstrap libraries to your web page.


<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

Was this article helpful?
Aman Agrawal

Aman Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article Bootstrap – A great Hack for Front End developers Next Article → How to remove outer ul and div from WordPress menu