public override XElement Build() => new XElement("html", Head.Build(), Body.Build());
public Html(Head head, Body body) { Head = head; Body = body; }