class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` FireGuardian 3000 Schematic Code Components Documentation `; } } customElements.define('custom-header', CustomHeader);