I solved the problem following these steps:
1) downloaded the file from Google
2) went on fontsquirrel and converted the .ttf file.
3) hosted it locally and used the following code:
@font-face {
font-family: 'bubbler_oneregular';
src: url('../font/bubblerone-regular-webfont.eot');
src: url('../font/bubblerone-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../font/bubblerone-regular-webfont.woff') format('woff'),
url('../font/bubblerone-regular-webfont.ttf') format('truetype'),
url('../font/bubblerone-regular-webfont.svg#bubbler_oneregular') format('svg');
font-weight: normal;
font-style: normal;
}
And finally used it with:
font-family: 'bubbler_oneregular';
Hope this might help some of you, this should work with other Google fonts as well.