我使用span标签更改了段落的字体。该字体可以在我的电脑上使用,但我不知道它是否可以在没有字体的个人电脑上使用。如果它没有,是否有办法让它们无需下载呢?
答案 0 :(得分:0)
不,他们没赢。字体必须在网站服务器上。你可以根据想要的谷歌字体,让它们在任何地方都可用。 https://www.google.com/fonts
并使用font-face
CSS规则:
@font-face {
font-family: myFirstFont; /* give a name to your font */
src: url(myFileFontFile); /* select the font file */
}
.my-class {
font-family: myFirstFont; /* apply the font to your div or span or whatever */
}