css – 如何使用font-family lato?

前端之家收集整理的这篇文章主要介绍了css – 如何使用font-family lato?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用font-family lato?

我使用这样的风格,但不工作。我能怎么做 ?谢谢。

font-family: Lato,Helvetica,sans-serif;

link:http://www.google.com/fonts/specimen/Lato

解决方法

请将此代码放在head部分
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>

并使用font-family:’Lato’,sans-serif;在你的css。例如:

h1 {
    font-family: 'Lato',sans-serif;
    font-weight: 400;
}

猜你在找的CSS相关文章