ItSolutionStuff.com

How to Install Bootstrap 5 in Angular 13?

By Hardik Savani β€’ May 1, 2024
Angular

This article will provide some of the most important example angular 13 add bootstrap. i would like to share with you angular 13 install bootstrap 5. let’s discuss about install bootstrap in angular 13. it's simple example of install bootstrap 5 in angular 13. Let's see bellow example how to install bootstrap in angular 13.

As we know Bootstrap is the world’s most popular framework for building responsive, and mobile-first sites. bootstrap provide several class for making responsive website for your mobile. So if you want to use bootstrap with angular 13 than i will help you very simple way.

I have a two install bootstrap and use it with your angular 13 project. i will give you both way example bellow.

You can easily create your angular app using bellow command:

ng new my-new-app

Example 1:

In this solution, you need to just install bootstrap on your angular 13 and import css file to style.css file. this is only for css importing. so you can run command bellow:

npm install bootstrap --save

Ok, now you need to import your bootstrap css on style.css file as like bellow:

src/style.css

@import "~bootstrap/dist/css/bootstrap.css";

Now you can use bootstrap class in your angular 13 app. It will works.

Example 2:

In this solution, we will also install bootstrap with jquery and popper js. so that way you can also import bootstrap css and bootstrap js function. So i think this will be best solution for you i think.

let's run following commands:

npm install bootstrap --save

npm install jquery --save

npm install popper.js --save

Now after successfully run above command. let's import it in angular.json file.

angular.json

....

"styles": [

"node_modules/bootstrap/dist/css/bootstrap.min.css",

"src/styles.css"

],

"scripts": [

"node_modules/jquery/dist/jquery.min.js",

"node_modules/bootstrap/dist/js/bootstrap.min.js"

]

.....

Now you can easily use bootstrap class as like bellow:

src/app/app.component.html

<div class="container">

<h1>Install Bootstrap 5 in Angular 13 - ItSolutionStuff.com</h1>

<div class="card">

<div class="card-header">

Featured

</div>

<div class="card-body">

<h5 class="card-title">Special title treatment</h5>

<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>

<a href="#" class="btn btn-primary">Go somewhere</a>

</div>

</div>

</div>

Now you can use bootstrap css and js both.

Run Angular App:

All the required steps have been done, now you have to type the given below command and hit enter to run the Angular app:

ng serve

Now, Go to your web browser, type the given URL and view the app output:

http://localhost:4200

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Create New Project in Angular 13?

Read Now β†’
β˜…

How to Upgrade from Angular 12 to Angular 13 Version Example

Read Now β†’
β˜…

Angular Material Select Dropdown Change Event Example

Read Now β†’
β˜…

Angular Material Multi Select Dropdown with Search Example

Read Now β†’
β˜…

Angular Material Select Dropdown with Search Example

Read Now β†’
β˜…

Angular Bootstrap Carousel Example

Read Now β†’
β˜…

Angular Bootstrap Collapse Example

Read Now β†’
β˜…

How to Use Bootstrap Popover in Angular?

Read Now β†’
β˜…

Angular Bootstrap Timepicker Example

Read Now β†’
β˜…

Angular 9/8 Bootstrap Modal Popup Example

Read Now β†’