DZone 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
// 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>





