random0developer0kd's picture
literally it is a entirely different website you made . i said make a clone
b1f1407 verified
Raw
History Blame Contribute Delete
471 Bytes
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: #333;
color: white;
padding: 1rem;
text-align: center;
}
</style>
<footer>
&copy; ${new Date().getFullYear()} Original Site Clone
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);