I just found the amazing Stackblitz online VS Code editor. I created an Angular project and under dependencies installed the Bootstrap CSS framework but how
Quite an old question but anyway this will be helpful for any one looking to include bootstrap in Stackblitz.
Step 1: Go to app.module.ts and write
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
Stackblitz will automatically prompts you for installing ng-bootstrap module.
Step 2: Add NgbModule in imports array.
imports: [ BrowserModule, FormsModule, NgbModule ],
Step 3: In your styles.css
@import '~bootstrap/dist/css/bootstrap.min.css';
Now you should be getting glyphicons in your Angular project.