|
Posted by AGw. (Usenet) on 01/18/08 21:07
On Jan 16, 8:16 pm, dittonamed <dittona...@gmail.com> wrote:
> I will be building a "template" from this to be included in each page
> of a PHP/JS/HTML project i'm starting soon, but I'm curious what other
> connoisseurs might think of my layout. [...]
>
> <?php
> # Header Output, cookies, session, auth, etc...
> ?>
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
As others have pointed out, this should be 4.01 Strict for new web
pages; you're also missing the URL. Here's what you should have
instead:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/
TR/html4/strict.dtd">
(wrap as appropriate)
--
AGw.
Navigation:
[Reply to this message]
|