css文件下载到本地端,但路径格式错误(新手问题)

The css file is downloaded to the local end, but the path format is wrong (Newbie question)

提问人:080_coder_from_jap 提问时间:8/10/2023 最后编辑:Harrison080_coder_from_jap 更新时间:8/14/2023 访问量:33

问:

我下载谷歌的css文件来使用他可爱的图标

我想把它们全部下载到本地端,这样就可以在没有互联网的情况下使用,但是路径格式可能是错误的

原.css的路径,css文件名——“fonts.googleapis.com_icon_family=Material+Icons.css”指的是同一个“woff2”在线

/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

  • 原理图
    我目前将它们都放在同一个文件夹中 [![示意图][1]][1]

我的绝对路径是 “C:\Users\jason\Desktop\Website_Project_Before\iPortfolio\iPortfolio\main_online\download_style_to_local\css\KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2”

与原始代码相比,我尝试过

/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../download_style_to_local/css/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

等等,但似乎这不是正确的道路,我需要一些建议 [1]:https://i.stack.imgur.com/ertgq.png

html css 文件 路径 src

评论


答:

0赞 happy beginer 8/14/2023 #1

这是结果视频(第二个)

1.下载“https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2”并命名为“1.woff2”,确保将其与您的网站html放在同一文件夹中

2.将“https://fonts.googleapis.com/icon?family=Material+Icons”的代码直接放入html标签中

/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(1.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}