As someone focusing on coding, I normally settle for HTML which is usable and let someone else make it look nice while I work on the functionality. But I'm trying to learn a bit, and one area I never paid any heed to is doc-types, meta headers and so on.
Take this page header, which I probably copied from somewhere:
I'm pretty sure it's an ugly abortion, but I don't really get the fine points. Is it better to make XHTML or HTML pages? Strict or transitional? I was looking here and can copy-paste, but I'd rather learn something.
Take this page header, which I probably copied from somewhere:
HTML Code:
<html> <head> <meta http-equiv="Content-Language" content="en-gb" /> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> <title>Test</title> </head>

Comment