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>