HTML
There are 2 entries for the tag HTML

I’ve knocked together a quick demonstration of what CSS can do these days.  Take a look (I’ll wait). Ultimately, this is how this sort of styling should be done on the web. Importantly, I'm not a web designer and I haven't used any "tricks" to deliver this. This is all hand-coded from easy to read articles on the web.  You can do this yourself without very much work; cutting and pasting the code on this page would be a good start. The weakness is the anti-aliasing (Firefox does this slightly better than Chrome). If you had a...

Reading Jeff Atwood's latest post reminded me of this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <body> <a href='http://www.colourcoding.net/'><h1> Can click on whitespace </h1></a> <h1><a href='http://www.colourcoding.net/'> Can't click on whitespace </a></h1> </body> </html> This is actually a really useful technique, especially if you're using a background image behind your title.  You can click anywhere on the first line and it will follow the link.  Is it portable?  To the best of my knowledge every browser interprets this the same way.  Is it standard? Err... no.  Actually, the standard doesn't even allow you...