class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Dr Mithun Parambath,CEO, NanoMatter Technologies About Services Success Stories Contact `; } } customElements.define('custom-navbar', CustomNavbar);