class includeHTML extends HTMLElement { connectedCallback() { const src = this.getAttribute("src"); fetch(src).then(response => response.text()).then(data => this.outerHTML = data); } } customElements.define("x-include", includeHTML);