Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Peter Cooperx http://www.petercooper.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Generic XHTML template

I'm often having to reconstruct this, as I can no longer memorize everything (just blank HTML and BODY tags used to be acceptable ;-)) with the DOCTYPE and namespaces.. so to make it easier to grab in future:

   1  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   2         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   3  
   4  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   5  	<head>
   6  		<title></title>
   7  		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
   8  		<link rel="stylesheet" href="styles.css" type="text/css" media="screen" />
   9  		<script type="text/javascript" src="common.js"></script>
  10  	</head>
  11  
  12  	<body>
  13  		<div id="container">
  14  
  15  			<div id="header">
  16  			</div>
  17  
  18  			<div id="wrapper">
  19  				<div id="main">
  20  					
  21  				</div>
  22  			</div>
  23  
  24  			<div id="footer">
  25  			</div>
  26  			
  27  		</div>
  28  	</body>
  29  
  30  </html>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS