template fallback content
+ +``` + +```js +let template = document.getElementById("template-id").content; +document.body.appendChild(template); +``` + +### Templates & Custom Elements + +Templates are useful on their own, but they work even better with web components. + +Since the template is added to a shadow DOM, it's possible to include styling information inside the template in a ` + +My paragraph
+ +``` + +```js +class CustomElement extends HTMLElement { + constructor() { + super(); + let template = document.getElementById("template-id").content;; + + const shadowRoot = this.attachShadow({ mode: "open" }); + shadowRoot.appendChild(template.cloneNode(true)); + } +} + +customElements.define("custom-element", CustomElement); +``` + +### The `
+