It’s the end of R.E.M. as we know it.

REM-end-of-the-band.jpgR.E.M. announced they were dis-banding this week. In this (pretty good) article by Bill Wyman (ex Rolling Stones bassist), he points to the (pretty bad) “It’s the End of the World” music video by R.E.M. I thought it was recently made by some kids, but it is the original. “What’s the deal with the portrait?” I wondered. So I went searching. Here’s a (pretty good) article about the kid in the film and its (pretty bad) making.

Google Web Fonts

In website design, you are restricted to a limited set of text fonts. You have to design based on the most common fonts people have installed. The complex data for drawing the font doesn’t come across the web, but rather from the local operating system. You control this with style code that looks something like this:

body {font:15px arial, helvetica,sans-serif;}

Which means, try to use areial and if they don’t have that, use helvetica, and if they don’t have that use whatever san serif default font the reader has.

The only way to use a creative display font would be to be to make it a graphic and display it as an image, which would not be text and would not be sizable or searchable. It wouldn’t really be a font.

As bandwidth has gotten greater… everyone is now watching YouTube and streaming Pandora… the concern about being so efficient with text has diminished. Why not send some extra font data with the page so everyone can read whatever font you want to use?

Google Web Fonts does just that. They have a nice little shopping tool that helps you browse different styles of fonts and then “check out” with the code to put at the top of your website. It is a specialized stylesheet call back to google fonts.

<head>

<link href=’http://fonts.googleapis.com/css?family=Schoolbell’ rel=’stylesheet’ type=’text/css’>

After trying on some different fonts, I settled on a general text font for Mac5’s home page called Cabin and then a fun display font for JEB:LOG titles called Schoolbell.

JEB_LOG with Schoolbell.png

What’s he building in there?