不得不佩服Google公司的想象力及其称霸IT行业的野心。光Google的软件都好多,开源API更多,所涉及的行业也不局限于IT,目光之远大,雄心勃勃!扯远了~~~。
今天上CSDN的时候看到篇《Google Web 字体 API 访谈》的博文,顺着线索找到Google Font API,试用了一下,感觉确实不错,不过真担心要是网上所有网页都采用他提供的API的话,他们服务器承受得了这么多用户么?这下web字体设计就不用那么纠结了,呵呵~下面给个Google字体API的实例,有兴趣的朋友一起研究研究:
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine
">
<style>
h1 {
font-family: 'Tangerine',serif;
font-size: 48px;
}
body {
font-family: '微软雅黑',serif;
font-size: 12px;
}
</style>
</head>
<body>
<h1>Very Good!很好!</h1>
Very Good!很好!
</body>
</html>