install bootstrap in angular

Installl bootstrap

npm install --save @ng-bootstrap/ng-bootstrap

app.module.ts

import { NgbModule } from '@ng-bootstrap/ng-bootstrap';

imports: [
  BrowserModule,
  AppRoutingModule,
  NgbModule
],
index.html
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />

Comments

Popular Posts