Reputation: 3
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
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