Bala Guru
Bala Guru

Reputation: 3

How can i import external css in angular 7

How can i import bootstrap.css,jquery and JavaScript in my angular components and how can convert html webpage to angular webpage

Style.css // Globally declaration for styles

@import url("./assets/css/bootstrap.css");

Upvotes: 0

Views: 117

Answers (1)

Sachin katiyar
Sachin katiyar

Reputation: 92

You can install bootstrap using npm.

npm install bootstrap --save

and then set the path in angular.json file as

"styles": [
      "src/styles.css",
       "node_modules/bootstrap/dist/css/bootstrap.min.css",
 ]

This will do the work.

Upvotes: 1

Related Questions