3p||<

“3 Paragraphs Or Less” (少过四段)

A standard HTML template

without comments

If you’re not doing anything too funky and you’re using an old-school text editor to write PHP code (which I do most of the time), then the HTML template below will serve you well for most cases. If you’re trying to do anything advanced, you might need to modify the DTD specified in the DOCTYPE tag to another one.

<!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” xml:lang=”en” lang=”en”>
<head>
<meta http-equiv=”content-type” content=”text/html;  charset=utf-8” />
<title>Insert title here</title>
</head>
<body>
</body>
</html>

Written by lioneltan

March 4th, 2010 at 1:22 pm

Posted in Uncategorized

Leave a Reply