How do you style the whole page background color of your apps script embedded in a Google sites web page. Currently I could use a div like this.
function doGet() {
return HtmlService.createHtmlOutput('<div style="background-color:#e9eccf"<h1>Hello</h1><p>Test</p></div>');
}
Any other ways to CSS style the HtmlService output?