You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: create anchors for all header elems & fix a11y in guides (#21751)
- Lighthouse's a11y audit wants page headers to progress in order
- https://web.dev/heading-order/
- Go through all guides and make the headers consistent
- and ordered to pass the a11y audit
- fix grammar issues and typos
Copy file name to clipboardExpand all lines: guides/creating-a-custom-stepper-using-the-cdk-stepper.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ In the `app.component.css` file we can now style the stepper however we want:
100
100
101
101
## Using our new custom stepper component
102
102
103
-
Now we are ready to use our new custom stepper component and fill it with steps. Therefore we can, for example, add it to our `app.component.html` and define some steps:
103
+
Now we are ready to use our new custom stepper component and fill it with steps. Therefore, we can, for example, add it to our `app.component.html` and define some steps:
Copy file name to clipboardExpand all lines: guides/getting-started.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
# Getting Started with Angular Material
2
2
3
-
This guide explains how to setup your Angular project to begin using Angular Material. It includes information on prerequisites, installing Angular Material, and optionally displaying a sample material component in your application to verify your setup.
3
+
This guide explains how to set up your Angular project to begin using Angular Material. It includes information on prerequisites, installing Angular Material, and optionally displaying a sample material component in your application to verify your setup.
4
4
5
5
*Angular Resources*
6
6
7
7
If you are new to Angular or getting started with a new Angular application, see [Angular's full Getting Started Guide](https://angular.io/start) and [Setting up your environment](https://angular.io/guide/setup-local).
8
8
9
9
For existing applications, follow the steps below to begin using Angular Material.
10
10
11
-
###Install Angular Material
11
+
## Install Angular Material
12
12
13
-
Use the Angular CLI's install[schematic](https://material.angular.io/guide/schematics) to set up your Angular Material project by running the following command:
13
+
Use the Angular CLI's installation[schematic](https://material.angular.io/guide/schematics) to set up your Angular Material project by running the following command:
14
14
15
15
```bash
16
16
ng add @angular/material
@@ -71,8 +71,8 @@ Run your local dev server:
71
71
ng serve
72
72
```
73
73
74
-
and point your browser to [http://localhost:4200](http://localhost:4200)
74
+
Then point your browser to [http://localhost:4200](http://localhost:4200)
75
75
76
76
You should see the material slider component on the page.
77
77
78
-
In addition to the install schematic, Angular Material comes with [several schematics](https://material.angular.io/guide/schematics) (like nav, table, address-form, etc.) that can be used to easily generate pre-built components in your application.
78
+
In addition to the installation schematic, Angular Material comes with [several schematics](https://material.angular.io/guide/schematics) (like nav, table, address-form, etc.) that can be used to easily generate pre-built components in your application.
0 commit comments