diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-01-22 14:05:15 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-01-22 14:05:15 +0000 |
commit | 52525eed79994b294af9cf905f6574fc75955369 (patch) | |
tree | 78d65d57d4185cb812d0a8b1fa18264ebf2c709d | |
parent | 856015e04d5da57b651301d061585510c78c1923 (diff) | |
download | acf-core-52525eed79994b294af9cf905f6574fc75955369.tar.bz2 acf-core-52525eed79994b294af9cf905f6574fc75955369.tar.xz |
Change www/index.html to HTML5 doctype
-rw-r--r-- | www/index.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/www/index.html b/www/index.html index 67b5bcd..465a49d 100644 --- a/www/index.html +++ b/www/index.html @@ -1,12 +1,12 @@ -<!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'> -<head> -<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> -<meta http-equiv='Cache-Control' content='no-cache' /> -<Meta http-equiv='Pragma' content='no-cache' /> -<meta http-equiv='refresh' content='0; url=cgi-bin/acf'> -</head> +<!DOCTYPE html> +<html> + <head> + <meta charset='utf-8' /> + <meta http-equiv='Cache-Control' content='no-cache' /> + <meta http-equiv='Pragma' content='no-cache' /> + <meta http-equiv='refresh' content='0; url=cgi-bin/acf'> + </head> -<body> -</body> + <body> + </body> +</html> |