• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    网页使用Google Font API(字体)的方法
    在网页设计里,字体的显示是个问题。最普遍用的是宋体,但是宋体在 Win 7 下的表现真的很难看。雅黑端庄一些,但是随着字体大小,感觉汉字的大小也会有区别。小站现在用的字体是是宋体 + Arial/Georgia,因为习惯了也没多在意,其实对于英文字体有其它更好的选择。
    比如 Bitter 字体,用来做标题倒是不错:
    复制代码 代码如下:

    div style="text-align:center; font-size:24px; font-family:Bitter;">Welcome To NowaMagic.net/div>

    CSS 怎么调用 Bitter 字体?
    复制代码 代码如下:

    @font-face {
      font-family: 'Bitter';
      font-style: normal;
      font-weight: 400;
      src: local('Bitter-Regular'), url(http://themes.googleusercontent.com/static/fonts/bitter/v4/s9gJB935qk_YG8d-lnTdvA.woff) format('woff');
    }
    @font-face {
      font-family: 'Bitter';
      font-style: normal;
      font-weight: 700;
      src: local('Bitter-Bold'), url(http://themes.googleusercontent.com/static/fonts/bitter/v4/JGVZEP92dXgoQBG1CnQcfD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
    }

    其实,这是 Google 推出的Google Font Directory和Google Font API两项服务,Google联合了众多的字体设计者为用户提供了多种漂亮的字体。具体可以参看以前写的一篇文章:《用Google Font API来丰富网页字体》。
    这里仅仅抛砖引玉,国内实在太少网站用 Google Font API 了。
    上一篇:iframe背景透明的设置方法
    下一篇:css white-space:nowrap属性用法(可以强制文字不换行输出)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    网页使用Google Font API(字体)的方法 网页,使用,Google,Font,API,