我使用的是官方的 google 素材图标:https ://material.io/icons/
我想在 svg 中添加一些我创建的图标。
我该怎么做?
您将需要创建自己的网络字体。
如果您已经拥有 SVG,那么您可以使用https://icomoon.io/app/之类的东西来创建一个。我没有使用它,所以对此无能为力。
如果没有,您需要找到一个字体创作工具,该工具可以导出为 woff 或 woff2 或您需要的任何网络字体格式。(我认为材料一是woff2)
关于更多它在此处输入链接描述
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title></title>
</head>
<body>
<i class="material-icons md-light md-inactive">face</i>
</body>
</html>