Thursday, May 20, 2010

web developer freebies

http://kuler.adobe.com/#themes/rating?time=30

http://code.google.com/webfonts/

Both link above are a good freebies for web developers, one is a site where people actually paste in their color palette combination, and people can rate them, so, when you are a bit undecided in terms of color, you can always look for reference there.

The second one is a free font for your website, hosted on Google Server, provided under an open source license. If you wonder on how to utilize custom font for your website, you can take a look at a code snippet bellow:


<link href='http://fonts.googleapis.com/css?family=Tangerine|Droid+Sans' rel='stylesheet' type='text/css' />
<style>
 .titleTangerine{
  font-family: 'Tangerine', serif;
  font-size: 48px;
 }
 .droid{
  font-family: 'Droid+Sans',sans;
 }
.textshadow{
 text-shadow: 4px 4px 4px #aaa;
}
</style>


Sampe Title Text

Sample text with shadow

No comments:

Post a Comment