Posts

Showing posts from December, 2020

Getting Started With Bootstrap

Image
What is Bootstrap? Bootstrap is a free and open-source front-end framework used for faster and easier web development. It gives you the ability to easily create responsive web applications.  With Bootstrap, you can add modifiable pre-designed components like  Alerts,  Buttons,  Carousel, Form Components,  Navbar,  Progress Bar, Spinners  in no time. It works well with all modern  browsers. Let's Set-Up Bootstrap Bootstrap can be used in two ways, either download Bootstrap or use  Content Delivery Network (CDN) . CDN is generally preferred because it  will make sure that once a user requests a file from it, it will be served from the server closest to them, which also leads to faster loading time. Using Bootstrap CDN: Go to  Introduction · Bootstrap v5.0 (getbootstrap.com) Copy and paste the CSS link inside the <head> tag of a HTML file. Copy the separate  JS links and paste at the end of the <body> tag of ...