Mobile app version of vmapp.org
Login or Join
Gloria351

: Google Web Fonts or Typekit? As a graphic designer, I do website designs, but not the development. Someone asked me today if I know about Typekit, and I hadn't heard of it so I googled it,

@Gloria351

Posted in: #Fonts #Google #Typekit #WebsiteDesign

As a graphic designer, I do website designs, but not the development. Someone asked me today if I know about Typekit, and I hadn't heard of it so I googled it, and it seemed pretty much like a paid for version of Google Web Fonts; which I occasionally use. I don't know the technical, developer reasons for using one or the other, but I don't want my client buying something when he could have just used something else for free, and got the same sort of results. So, my question is, is one better than the other? Or are there good and bad points to both?

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @Gloria351

4 Comments

Sorted by latest first Latest Oldest Best

 

@Berryessa866

You should also check out webfonts.fonts.com as they have a tremendous selection of web fonts as well. They also carry many of the top branding fonts that brands use like Helvetica, Avenir, Univers, Frutiger and many more. They also carry many third party foundry fonts too. Check it out!

10% popularity Vote Up Vote Down


 

@Sarah814

Another option that's more flexible than either of those is using @font -face.

It's free, and you can use whatever font you want. Just have to upload the font to wherever the site's hosted and specify it in the css. Only thing is you have to convert the font format to be compatible with different browsers.

Here's an example - say you want to use the LeagueGothic font:

1) Use a font convertor to convert it to .ttf, eot, woff etc. www.fontsquirrel.com/fontface/generator
2) Upload all the font files to a fonts folder

3) In your CSS, include (make sure to update the path url accordingly):

@font -face {
font-family: 'LeagueGothicRegular';
src: url('../fonts/League_Gothic-webfont.eot');
src: url('../fonts/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/League_Gothic-webfont.woff') format('woff'),
url('../fonts/League_Gothic-webfont.ttf') format('truetype'),
url('../fonts/League_Gothic-webfont.svg#webfontFHzvtkso') format('svg');
font-weight: normal;
font-style: normal;
}


4) And when you want to use it, just call it:

h3{
font-family: 'LeagueGothicRegular', 'Gill Sans', 'Lucida Grande', Trebuchet, sans- serif;
}


Haven't tried Typekit, but I think it essentially does the same thing - just takes out the conversion step and hosting for you, and also provides lots of fonts to choose from. @font -face is really not that much more work though, so I personally prefer it.

Check out this post for more info: sixrevisions.com/css/font-face-guide

10% popularity Vote Up Vote Down


 

@Murray664

First, are you happy with the type selections and the character spacing of fonts on Google Web Fonts? I haven't used them yet, although I have seen at least one or two sites with excellent results using them. At the same time, some of the displays of their fonts show poor letterfit (mostly too much space between letters).

If you need to match to Adobe Fonts used in print, sounds like Typekit might fit the bill. They don't currently show too many Adobe fonts at their basic account level, although there's plenty of choice. The basic account is pretty inexpensive, so a client should be able to afford it. I'm using it on a blog on DrupalGardens at the moment, and enjoy being able to use Myriad Pro.

Probably comes down to choosing the fonts you want to use, seeing which site has what you want or close to it, and going with the flow. You might check out Typecast, a new website currently in private beta, where you can design in the browswer, choose webfonts from Google, Typekit, Fonts dot com, etc., create your site design with web fonts, see exactly how it will look, then order up the fonts that work for you. I've asked to join the beta, to check it out. Should certainly make the process smoother for designers.

10% popularity Vote Up Vote Down


 

@RJPawlick971

In terms of technology they are pretty much the same.

In terms of product, they differ in that Google is focusing on open source offerings (no cost) while Typekit is focusing on commercial type licensing.

The decision as to which to use would really come down to which typeface you want to use.

Note that a lot of foundries and type distributors are now offering services like typekit, so definitely shop around a bit.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme