The document outlines the process of taking a cheese-focused website from initial design to deployment, including setting up a local development server, adding content and navigation, styling the site with CSS, fixing bugs, and launching the live site at cheesophile.com. It provides details on tasks like choosing typefaces, implementing a grid framework, fixing transparency issues, and addressing common bugs in Internet Explorer 6.
26. Doctype
HTML 4 Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01//EN" "http://www.w3.org/TR/html4/
strict.dtd">
XHTML Transitional
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML
1.0 Transitional//EN" "http://www.w3.org/
TR/xhtml1/DTD/xhtml1-transitional.dtd">
33. Y! Graded Browser Support
3 2 9 6 7
"Support does not mean that everybody gets
the same thing. Expecting two users using
different browser software to have an identical
experience fails to embrace or acknowledge
the heterogeneous essence of the Web. "
http://developer.yahoo.com/yui/articles/gbs/
97. GOLDEN RULES
Don¡¯t be tempted to apply hacks
globally with star selector: *
Try and understand the problem
before hacking:
http://www.positioniseverything.net/
98. ¡®POPULAR¡¯ Bugs
Element missing?
Apply position:relative to it.
Floated element with twice the
amount of margin?
Apply display:inline to it.