http://www.alistapart.com/articles/doctype/ Explanation of doctypes
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">OR
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">OR
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
http://www.quirksmode.org/ Read about Quirks Mode
<html xml:lang="en" >
http://webdesign.about.com/od/localization/a/aa043007.htm Read about language declarations
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
This specifies the encoding of symbols and special characters [UTF-8 is the default]. The World Wide Web Consortium (W3C) highly recommends the use of UTF-8 wherever possible. UTF-8 can be used for all languages and is the recommended charset on the Internet.
http://www.webheadstart.org/xhtml/encoding/index.html Explains xhtml encoding in UT-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- add the DOCTYPE --> <html xml:lang="en" > <!-- declare language[s]--> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" / > <!-- declare character encoding ----> <title>Page Title Here <!-- add the page title --> <meta name="keywords" content="internationalization, language HTML, language XHTML, localization of Web pages, language of Web pages"> <!-- use key words for search engines--> <meta name="description" content="When you specify the language of your XHTML documents, you are making your Web pages more useful to many different applications. This article examines the W3C's Internationalization Best Practices, and gives suggestions for how to implement them in your HTML and XHTML documents."> <!-- describe content for search engines--> </head>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- add the DOCTYPE --> <head> <title>Page Title Here </title> <!-- add the page title --> </head>
http://www.quirksmode.org/css/quirksmode.html Quirks mode: how the browser displays a page if the DOC TYPE is missing
http://www.synergycons.com/Tutorials/xhtml2.asp XHTML file template
http://green-beast.com/blog/?p=109 Basics for a new CSS file [but we are using the zencss selectors]
http://jessey.net/simon/articles/003.html Visual example of the box model
http://www.456bereastreet.com/archive/200612/internet_explorer_and_the_css_box_model/ CSS box model and differences between W3 and Internet Explorer box models
http://www.brainjar.com/css/positioning/ Guide to CSS positioning
http://css.maxdesign.com.au/listamatic/about-boxmodel.htm The IE box model and Doctype modes
http://www.maxdesign.com.au/presentation/process/index.htm This is the CSS page-building technique we will use this semester
http://www.brainjar.com/css/using/ Overview of CSS Style Sheets; including review of selectors
http://browsersize.googlelabs.com/ Google tool to analyze optimum browser sizes
http://www.colorschemer.com/blog/2007/07/24/140-named-colors/ 140 Named colors
http://www.bigbaer.com/reference/colors/named_colors.htm Named colors
http://www.somacon.com/cgi/colorchart.pl/hex colors Chart of hex colors
http://green-beast.com/blog/?p=199 Units of calculation in pixels, % and EMs
http://www.barelyfitz.com/screencast/html-training/css/positioning/ Tutorial on positioning
http:/www.autisticcuckoo.net/archive.php?id=2005/01/11/block-vs-inline-1 Block vs. Inline elements [div vs. span]
http:/www.autisticcuckoo.net/archive.php?id=2005/01/12/block-vs-inline-2 Block vs. Inline elements: block formatting context, bloxk box dimensions, collapsing margins
http://www.autisticcuckoo.net/archive.php?id=2005/01/13/block-vs-inline-3 Block vs. inline boxes, inline box formatting
http://browsershots.org/ View your page online in different browsers. Your page must be online.
http://ipinfo.info/netrenderer/ See your page in various IE browsers. Your page must be online.
http://www.htmldog.com/examples/ List of properties for HTML and CSS; look at LAYOUT examples
http://blog.html.it/layoutgala/ 2 and 3-column layouts
http://www.dynamicdrive.com/style/layouts/category/C10/ various layouts
http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm 2-column layouts [uses floats]
http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/ 2-column layouts [uses floats]