Getting Started With Bootstrap
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.
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 the HTML file.
- Your Setup should be looking like this.
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 the HTML file.
- Your Setup should be looking like this.
Comments
Post a Comment