class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` AutoStream Home Tutorial Resources Get Started `; } } customElements.define('custom-header', CustomHeader);