Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ These are two different official icon sets from Google, using the same underlyin

The icons can be browsed in a more user-friendly way at https://fonts.google.com/icons. Use the popdown menu near top left to choose between the two sets; Material Symbols is the default.

The icons are designed under the [material design guidelines](https://material.io/guidelines/).
The icons are designed under the [material design guidelines](https://m2.material.io/design/iconography/system-icons.html).

## Icon Requests

Expand Down Expand Up @@ -132,6 +132,9 @@ The `font` and `variablefont` folders contain pre-generated font files that can
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
rel="stylesheet">
```

> **Note:** The older `https://fonts.googleapis.com/icon?family=Material+Icons` URL format is deprecated and may fail to load. Use the `css2` URL format shown above instead.

Read more on [Material Symbols](https://developers.google.com/fonts/docs/material_symbols/) or [Material Icons](https://developers.google.com/fonts/docs/material_icons/) in the Google Fonts developer guide.


Expand Down
12 changes: 7 additions & 5 deletions font/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@ Material Icons are the non-variable classic icon fonts, while the Material Symbo
The recommended way to use the Material Icons font is by linking to the web font hosted on Google Fonts:

```html
<!-- https://material.io/resources/icons/?style=baseline -->
<!-- https://fonts.google.com/icons?icon.set=Material+Icons&icon.style=Filled -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons"
rel="stylesheet">

<!-- https://material.io/resources/icons/?style=outline -->
<!-- https://fonts.google.com/icons?icon.set=Material+Icons&icon.style=Outlined -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Outlined"
rel="stylesheet">

<!-- https://material.io/resources/icons/?style=round -->
<!-- https://fonts.google.com/icons?icon.set=Material+Icons&icon.style=Rounded -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Round"
rel="stylesheet">

<!-- https://material.io/resources/icons/?style=sharp -->
<!-- https://fonts.google.com/icons?icon.set=Material+Icons&icon.style=Sharp -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Sharp"
rel="stylesheet">

<!-- https://material.io/resources/icons/?style=twotone -->
<!-- https://fonts.google.com/icons?icon.set=Material+Icons&icon.style=Two+tone -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Two+Tone"
rel="stylesheet">
```

> **Note:** The older `https://fonts.googleapis.com/icon?family=Material+Icons` URL format is deprecated and may fail to load. Use the `css2` URL format shown above instead.