class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` 璇璣圖 Explorer Home History Reading Methods About `; } } customElements.define('custom-navbar', CustomNavbar);