Adding Bootstrap After creating the project, you need to install Bootstrap 4 and integrate it with your Angular project. First, navigate inside your project’s root folder: $ cd angular-bootstrap-demo Next, install Bootstrap 4 and jQuery from npm: $ npm install --save bootstrap jquery (In this case, bootstrap v4.2.1 and jquery v3.3.1 are installed.) Finally, open the angular.json file and add the file paths of Bootstrap CSS and JS files as well as jQuery to the styles and scripts arrays under the build target: "architect" : { "build" : { [ ... ] , "styles" : [ "src/styles.css" , "node_modules/bootstrap/dist/css/bootstrap.min.css" ] , "scripts" : [ "node_modules/jquery/dist/jquery.min.js" , "node_modules/bootstrap/dist/js/bootstrap.min.js" ] } , Adding A Data Service After creating a project and adding Bootstrap 4, we’...