将所有 Google Material 图标字体请求合并为一个

Combine all Google Material icon font requests into one

我想知道是否可以将以下所有请求合并为一个。可能吗?如果是,如何?

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Outlined" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Round" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Sharp" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Two+Tone" rel="stylesheet" />

您可以简单地堆叠family URL参数。请注意,我使用了 css2 URL 路径变体。

<link href="https://fonts.googleapis.com/css2?family=Material+Icons&family=Material+Icons+Outlined&family=Material+Icons+Round&family=Material+Icons+Sharp&family=Material+Icons+Two+Tone" rel="stylesheet" />

<span class="material-icons-outlined">settings</span>
<span class="material-icons-round">check_circle</span>
<span class="material-icons-two-tone">account_circle</span>