class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` 🦊 The Fox & Hounds About Menu Events Contact ☰ `; } } customElements.define('custom-navbar', CustomNavbar);