1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 14:47:53 +02:00
cheatsheets/google-webfonts.md
2020-07-03 22:47:47 +10:00

645 B

title layout intro
Google Webfonts 2017/sheet Short snippets on using [Google Webfonts](https://google.com/fonts) in a web page.
<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!