class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` TrackMeNot Features How It Works Download Get Started Features How It Works Download Get Started `; } } customElements.define('custom-navbar', CustomNavbar);