一个css 可以引入两个font-face吗

html-css012

一个css 可以引入两个font-face

第一个是指定字体:

.youclass{font-family:文鼎POP}

此处 font-family 指定字体为 文鼎POP ,但电脑上没装 文鼎POP 字体的人看网页,将看不到这个字体效果,任看到电脑上默认的 宋体 或 微软雅黑体,因此针对中文操作系统来说:为保证网页效果,通常只能指定:宋体、黑体、微软雅黑之类的系统上默认自带的字体。

第二个 font-face 的用法是载入一个字体:

@font-face { font-family:comicsrc:url(http://url/文鼎POP.eot)}

将 文鼎POP 的 .eot 格式文件传到服务器上,然后用 font-face 加载到网页中,别人电脑没装这个字体,但用 font-face 加载后同样能在网页上显示出文鼎POP的效果。

font-face 这个方法对中文网页并无多大作用,可以不用关心这个用法,一是多数中文字体并没有专门设计eot格式,二是中文字体动则10M甚至更大,在网页中载入,等待时间太长,只会引起浏览者不爽。英文就不一样了,26个字母大小写也才52个+数字符号之类的在里面,文件也才几十K,动态载入完全没问题。

我今天也遇到了这个问题,最后发现是因为站点更新了。现在你可以访问这个网站找到需要的文件了。

fonts.googleapis.com

一种办法是用这个域名代替你原来的字体库地址;

另一种是下载下来之后本地引入。

下面是你需要的资源:

/* cyrillic-ext */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/an78_18DAUCSU6a4qacRuA.woff2) format('woff2')

  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F

}

/* cyrillic */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/4NN7UQ_VsRBn7NDD9HKUPw.woff2) format('woff2')

  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116

}

/* greek-ext */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/ye-fuRt_0mKrPeIp6Mwa8A.woff2) format('woff2')

  unicode-range: U+1F00-1FFF

}

/* greek */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/VF6T-UwCT6WyIiUKP6AykQ.woff2) format('woff2')

  unicode-range: U+0370-03FF

}

/* hebrew */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/X3cUdzInOvbZ6zhcyjPc3w.woff2) format('woff2')

  unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F

}

/* vietnamese */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/eSHy7hCA8QR4qTF-59v60g.woff2) format('woff2')

  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB

}

/* latin-ext */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/V41d6938Z8eBLYL302F8Ig.woff2) format('woff2')

  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF

}

/* latin */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 400

  src: local('Arimo'), url(https://fonts.gstatic.com/s/arimo/v9/HNu4Nzh6q8Es60EMNZhs9w.woff2) format('woff2')

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215

}

/* cyrillic-ext */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/ar6XjGD_YvbpY9XD5YxKTBTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F

}

/* cyrillic */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/XzFO_hPcAZmADxw_2htokBTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116

}

/* greek-ext */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/Tq4Zh2K0uru54pu6hyua9BTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+1F00-1FFF

}

/* greek */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/gRIQMcBGUlcKSvTGaO9yHBTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+0370-03FF

}

/* hebrew */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/Jg7MGeIJdVGhHqsyezM8VRTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F

}

/* vietnamese */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/u0Tw4Txbkc9Av4uzN1j1aBTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB

}

/* latin-ext */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/XCmwOdi6K62tkWaszbVGURTbgVql8nDJpwnrE27mub0.woff2) format('woff2')

  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF

}

/* latin */

@font-face {

  font-family: 'Arimo'

  font-style: normal

  font-weight: 700

  src: local('Arimo Bold'), local('Arimo-Bold'), url(https://fonts.gstatic.com/s/arimo/v9/27rE5lMk9EHpLbxiIuGd0PesZW2xOQ-xsNqO47m55DA.woff2) format('woff2')

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215

}

/* cyrillic-ext */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/-lqiBwxkYHykb59Lvn7rk_Y6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F

}

/* cyrillic */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/tvCMF1Qlf0MEvcc7JEzrhfY6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116

}

/* greek-ext */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/aKQL0kir7sjNM0_YzHc9yvY6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+1F00-1FFF

}

/* greek */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/c6Ldt38oFMowvdIZIi9CaPY6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+0370-03FF

}

/* hebrew */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/awI6zBWVPE21rQLtkVDZpfY6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F

}

/* vietnamese */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/Phj51JGRBuPcxq7i7-qcHPY6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB

}

/* latin-ext */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/-CSRdP_Aes2aBSIDGwIm6vY6323mHUZFJMgTvxaG2iE.woff2) format('woff2')

  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF

}

/* latin */

@font-face {

  font-family: 'Arimo'

  font-style: italic

  font-weight: 400

  src: local('Arimo Italic'), local('Arimo-Italic'), url(https://fonts.gstatic.com/s/arimo/v9/GYkAnzJvKnl5kOgLY6RO-w.woff2) format('woff2')

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215

}

你可以复制上面的代码,然后保存为.css文件。