Date added: 26 May 2010
Last Mod: 26 May 2010
© 2010 Steve Campisi
Website Administrator Know How Articles
Template for an xhtml strict webpage
Copy and paste code to get an XHTML (strict) webpage rolling.
Simple instructions to get started:
a) Copy and paste the folowing code into a blank page in a text editor.
b) Save the document under a new name as either a .html or .htm
<!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>xhtml template by www.websiteadministrator.com.au</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="my name" />
<meta name="description" content="a general description of this webpage" />
<meta name="keywords" content="insert, some, keywords, here," />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<style type="text/css">
/*<![CDATA[*/
<!--
css_code_goes_here
-->
/*]]>*/
</style>
</head>
<body>
My HTML code goes in here
</body>
<!-- template by www.websiteadministrator.com.au -->
</html>
That's it. You are now able to start coding in xhtml strict format. Have fun.