Ask HN: Which fonts do you use on the web for your websites/blogs?
I'm building my personal website with a blog. I'm confused about which fonts I should use. I'm an aspiring designer/developer and love well designed sites hence I would like to have beautiful readable fonts for my blog and different decorative font(s) for my website.
P.S. Some pointers on Typography & the latest Web design paradigms would be a great help as well. Thanks in Anticipation.
8 comments
[ 2.6 ms ] story [ 31.7 ms ] threadFor "fancy" fonts, Google Web Fonts[2] is a great resource - you can embed a font into your page, so it isn't dependent upon it already being on the user's system.
There's a lot of reading you can do on typography, but I'd recommend experimenting with different fonts (serif & sans-serif), sizes, letter spacing, line height, and other parameters to get a feel for what makes text readable. Try a few ideas you like, then stand a foot farther from your monitor and see if it still looks good.
[1] http://en.wikipedia.org/wiki/Core_fonts_for_the_Web
[2] http://www.google.com/webfonts
h1 { font-family: Georgia, Time, serif; font-size: 32px; color: #333; margin-bottom: 22px; } p { font-family: Verdana, Arial, san-serif; font-size: 13px; line-height: 24px; color: #666; margin-bottom: 22px; } Here's an example http://jsfiddle.net/5UJZW/
Chrome/Webkit has a built-in "Inspect element" functionality that gives a similar access to the computed font-family value.