[ View menu ]

Archive for 'templates'

XHTML 1.0 Strict template

December 12, 2006

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
 
</body>
</html>

HTML 4.01 Strict template

October 5, 2006

I find that I look for this starting template A LOT. HTML-Kit has a template for HTML 4.01 Strict when you create a new HTML file, but I use Notepad++ for most of my editing now, so I need to dig up this code all the time.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>