Skip to content

Instantly share code, notes, and snippets.

@jeshan
Created October 5, 2015 18:38
Show Gist options
  • Save jeshan/e5e078e454ff59927169 to your computer and use it in GitHub Desktop.
Save jeshan/e5e078e454ff59927169 to your computer and use it in GitHub Desktop.
public class Html {
private Body body = Body.create(this);
private Head head = Head.create(this);
public static Html html() { return new Html(); }
public Head head() { return head; }
public Body body() { return body; }
// rest omitted
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment