mojokk wrote:
Thanks for your information. I appreciate your taking the time to respond. A few thoughts and a couple of more questions/clarifications. The first four lines of code are what Dreamweaver CS5 generates. I assume these are no longer current or or not compatible with HTML5 and that I should be using the following for all web pages I build, correct?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
That's right CS5 does not have the ability to produce html5 doctypes as far as I know.
All doctypes are still current and will work - you just a have to know what code is compatible with what doctype.
The general advice is if you want to keep current go with:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />