Angular MDBootstrap Stepper Component Last Updated : 12 Apr, 2025 Comments Improve Suggest changes Like Article Like Report MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Stepper Component in Angular MDBootstap. The Stepper Component is used to render the content in steps or milestones. Each followed step is separated & connected with the buttons.Properties:disableWaves: It allows the user to toggle waves effects.linear: It allows the user to toggle linear mode.vertical: It allows the user to change stepper orientation to vertical.Syntax:<ul class="stepper stepper-horizontal"> <li class="completed"> <span>GeeksforGeeks</span> </li></ul>Approach:Download Angular MDBootstrap from the official site.Extract the files to the current working directory.Install npm in the current project using the following command:npm installAfter creating your project folder i.e. appname, move to it using the following command:cd appnameStart the server using the following command:ng serveProject Structure: After complete installation, it will look like the following:Project StructureExample 1: This is the basic example that illustrates how to use the Stepper component in Angular MDBootstrap.app.component.html app.component.ts app.module.ts Output: Angular MDBootstrap Horizontal Stepper Component Example 2: This example illustrates how to make a vertical Stepper Component in Angular MDBootstrap. app.component.html app.component.ts app.module.ts: JavaScript import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { MDBBootstrapModule } from 'angular-bootstrap-md'; import { FormsModule } from '@angular/forms'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, BrowserAnimationsModule, MDBBootstrapModule.forRoot(), FormsModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule{} Output: Angular MDBootstrap Vertical Stepper Component Comment More infoAdvertise with us Next Article Angular MDBootstrap Stepper Component taran910 Follow Improve Article Tags : Web Technologies AngularJS Geeks Premier League Geeks-Premier-League-2022 MDBootstrap Similar Reads Angular MDBootstrap Panels Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Panels Component in Angular MDBootstap. The Panels Component facilitates a flexible &  extensible 2 min read Angular MDBootstrap Textarea Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Textarea Component in Angular MDBootstrap.The Textarea Component is used to make a field in which the 2 min read Angular MDBootstrap Tooltips Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make good-looking webpages with its seamless and easy-to-use component. In this article, we will know how to use Tooltips Component in Angular MDBootstap. Tooltips are used to provide interactive textual hints to 3 min read Angular MDBootstrap Progress Bar Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component In this article, we will know how to use Progress Bar Component in Angular MDBootstap. The Progress Bar Component is used to depict the progres 2 min read Angular MDBootstrap Pagination Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make good looking webpages with its seamless and easy-to-use component. In this article, we will know how to use Pagination Component in Angular MDBootstap. Pagination Component allows the user to navigate data b 3 min read Angular MDBootstrap Badges Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Badges Component in Angular MDBootstap. The Badges Component is used to represent the text as a statu 3 min read Angular MDBootstrap Alerts Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Alerts Component in Angular MDBootstap. The Alerts Component is used to provide contextual feedback m 2 min read Angular MDBootstrap Forms Radio Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Forms Radio Component in Angular MDBootstrap.A Radio Button Component is a component that allows a us 4 min read Angular MDBootstrap Loaders Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Loaders Component in Angular MDBootstap. The Loaders Component is used to indicate the loading state 3 min read Angular MDBootstrap Buttons Component MDBootstrap is a Material Design and bootstrap-based Angular UI library that is used to make attractive webpages with its seamless and easy-to-use component. In this article, we will know how to use Buttons Component in Angular MDBootstap. The Buttons component is used to make a button that will ind 3 min read Like