Google Fonts

Google 字体库


字体库

Get Started


  1. Standard方法
  • 通过发送请求引入字体样式

  • 设置请求的样式字体到指定的选择器
.css-selector {
  font-family: 'Font Name', serif;
}
  1. import方法
  • 如果使用less需要在末尾加入&.css
@import url('https://fonts.googleapis.com/css?family=Montserrat');
  • 设置请求的样式字体到指定的选择器
.css-selector {
  font-family: 'Montserrat', serif;
}
  1. font effect(特殊效果)

This is a font effect!

官方文档

Google Font

你可能感兴趣的:(Google Fonts)