Add Bootstrap in Angular

venkateshpensalwar

venkateshpensalwar

Posted on January 30, 2024

Add Bootstrap in Angular

Hi, All today I am going to show you how we can add CSS framework in angular and I am using Bootstrap for this Post.

bootstrap website

  • You will see the npm command to install the package ```

npm i bootstrap@5.3.2

* After installing this package go into your angular.json file and add this lines into this object. 

![Angular json](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9ep2cwyhtlx0bvd2p9tk.png)

Enter fullscreen mode Exit fullscreen mode

"styles": [
"src/styles.scss",
"node_modules/bootstrap/scss/bootstrap.scss"
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
]


* run your application using 

Enter fullscreen mode Exit fullscreen mode

ng serve

* Open the app.component.html file remove all default HTML and change the HTML with the following
Enter fullscreen mode Exit fullscreen mode

Primary
Secondary
Success
Danger
Warning
Info
Light
Dark
Link

Now check your browser 
![Browser](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dltyywh7w5podfqcvs5h.png)

In this way, we integrated Bootstrap into your Angular project it will work for any version of Angular and if you have any queries or doubts then feel free to reach out to me!!

Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
venkateshpensalwar
venkateshpensalwar

Posted on January 30, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Add Bootstrap in Angular
bootstrap Add Bootstrap in Angular

January 30, 2024