I'm new to WP and theme design. I would like to know best Doc type to use for wordPress XHTML Transitional or XHTML Strict ?
Also, I was looking at this tutorial and been trying to figure out a 3 column w/footer that was designed using Style Master CSS Editor.
<!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>intheholler</title>
<meta http-equiv="content-Type" content="utf-8" />
<meta name="generator" content="StyleMaster CSS Editor" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="header">
<p>here is the header</p>
</div>
<div id="leftcolumn">
<p>(left column)</p>
</div>
<div id="rightcolumn">
<p>(right column)</p>
</div>
<div id="maincontent">
<p>here is the main content</p>
</div>
<div id="footer">
<p>here is the footer</p>
</div>
</body>
</html>