* </p>
*
* @param file
*/
private void buildHTML() throws Exception {
XML html = I.xml("html");
XML head = html.child("head");
head.child("meta").attr("charset", "utf-8");
head.child("link").attr("type", "text/css").attr("rel", "stylesheet").attr("href", "normalize.css");
head.child("link").attr("type", "text/css").attr("rel", "stylesheet").attr("href", config.root.relativize(css));
XML body = html.child("body");
body.child("header").attr("id", "Header");
body.child("div").attr("id", "Content");
body.child("footer").attr("id", "Footer");
body.child("script").attr("type", "text/javascript").attr("src", "pointer-events.js");
body.child("script").attr("type", "text/javascript").attr("src", "boot.js");
body.child("script").attr("type", "text/javascript").attr("src", config.root.relativize(js));
html.to(new HTMLWriter(Files.newBufferedWriter(this.html, I.$encoding)));
}