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

xhtml 1.0 document (See related posts)

// description of your code here
Just a plain xhtml 1.0 document, with an import statement for css and js.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl" lang="nl">
	<head>	
		<title>Title</title>
		<!-- 
			as we all are nice people, we keep our presentation seperate 
		-->
		<link rel="stylesheet" type="text/css" href="style.css" />
		<!-- 
			and our behaviour too!!!
		-->
		<script src="general.js" type="text/javascript"></script>
	</head>
	<body>
		<!-- content -->
	</body>
</html>

You need to create an account or log in to post comments to this site.


Click here to browse all 5059 code snippets

Related Posts