class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
Rosalinda's Haven
`; } } customElements.define('custom-header', CustomHeader);