Using Google web fonts

2012-03-06 Thread bryanb
There have been a few posts here and on StackOverflow, but I've still got an issue with using Google Web fonts in my GWT app. In my module .gwt.xml file I have inherits name='com.google.gwt.user.theme.clean.Clean' / stylesheet src=http://fonts.googleapis.com/css? family=Roboto:regular,medium

Re: Google Web Fonts

2011-01-28 Thread Jeff Schwartz
From what I read they are just web fonts which means their font css style sheets need to be loaded via a link tag and once they are loaded they are used as any other font would be using standard css font attributes. The Technical Considerations documentation, located at

Re: Google Web Fonts

2011-01-28 Thread Jaroslav Záruba
...and then you read On Friday, January 28, 2011 3:26:26 PM UTC+1, Jeff wrote: Another very cool service from Google provided to us struggling web developers... how cool is that? +1 ...and then you read those drama queens on Engadget crying that Google has added ads to GMail UI or ceased

Re: Google Web Fonts

2011-01-28 Thread Jeff Schwartz
2011/1/28 Jaroslav Záruba jaroslav.zar...@gmail.com No trick apparently, @font-face. Yup, I believe you are right :) Too bad the fonts (quite predictably) miss many characters and there's no way to complete them. I'd participate glady. -- You received this message because you are

Re: Google Web Fonts

2011-01-28 Thread Arthur Kalmenson
I got it working with my GWT app by just putting the link into the HTML file (that includes the GWT JS) and using the font as you would use any font (like verdana) in your CSS file. No @font-face required. -- Arthur Kalmenson On Fri, Jan 28, 2011 at 9:48 AM, Jeff Schwartz

Re: Google Web Fonts

2011-01-28 Thread EMan
Yes adding it into the main HTML file seems to work now for me. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Google Web Fonts

2011-01-27 Thread EMan
Has anyone successfully used this in a GWT project? http://code.google.com/apis/webfonts/docs/getting_started.html#Quick_Start I tried to add these fonts to some uiBinder elements, but I can't get it to work. What is the best way to get the font css files to link up? Thanks. -- You received