Angular bootstrap
Angular Bootstrap
Angular
- Definition: Angular is a front-end framework developed by Google for building dynamic single-page web applications.
Bootstrap
- Definition: Bootstrap is a CSS framework developed by Twitter that provides pre-designed UI components like buttons, forms, modals, and grid layouts.
Angular Bootstrap
- Definition: Angular Bootstrap refers to the practice of using Bootstrap’s design system within an Angular application to quickly build responsive and modern UIs.
Install Bootstrap:
- Navigate to your Angular project directory and install Bootstrap via npm;
npm install bootstrap
Include Bootstrap in Your Angular Project:
- Open the
angular.json
file and add the Bootstrap CSS to thestyles
array:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
Include Bootstrap in Your Angular Project:
- Open the
angular.json
file and add the Bootstrap CSS to thestyles
array:
"scripts": ["node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"]
moblie response
- Smartphones -xs( extra Small )
- Tablets - sm(Small)
- Laptops - md ( Medium )
- Desktop - lg ( large )
Comments
Post a Comment