I'm trying to include a Google font in jsFiddle without success. I added the URL to "External Resources" but it is included as a <script>
.
This is the font that I want to include:
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>
Webfonts must be included in the CSS quadrant, using @import:
@import url(//fonts.googleapis.com/css?family=Oswald:400,700,300);
You can use dataURL if you haven't got any url online(only available on local computer)
@font-face {
font-family: 'us101';
src: url(data:font/truetype;charset=utf-8;base64,AAEAAAASAQA...);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With