// Use JS to write whatever HTML and data you want to the page // One way of using JS to write HTML and data is with a multi-line string // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals document.write ( ` <h1> My web page </h1> <p> Insert whatever HTML you want in here. </p> ` );