html`
<html lang="en">
<!-- HEAD element containing meta information, style, and links -->
<head>These are my five favorite colors:</head>
<!-- BODY element containing all document content elements -->
<body>
<h2 id="header" style="background:pink; text-align: center; color: white;">pink</h2>
<h2 id="header" style="background:blue; text-align: center; color: white;">blue</h2>
<h2 id="header" style="background:green; text-align: center; color: white;">green</h2>
<h2 id="header" style="background:yellow; text-align: center; color: white;">yellow</h2>
<h2 id="header" style="background:red; text-align: center; color: white;">red</h2>
</body>
</html>
`