Setup Project in Angular CLI

Create new project
ng new {project}

Install Bootstrap

Install boostrap css in your project with npm.
npm install --save bootstrap

add link to angular-cli.json
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css"
],

Run site
ng serve

Leave a Reply

Your email address will not be published. Required fields are marked *