mirror of
https://github.com/rstacruz/cheatsheets.git
synced 2026-04-27 03:00:45 -04:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
626 B
626 B
title, intro
| title | intro |
|---|---|
| Google Webfonts | Short snippets on using [Google Webfonts](https://google.com/fonts) in a web page. |
Link tag
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css" />
CSS import
/* One font */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
/* Combining multiple fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400italic|Montserrat:400,700'');
Great for using with Codepen.io or similar websites!