Skip to content

Instantly share code, notes, and snippets.

@mdmoinulhossain
Last active April 1, 2023 09:18
Show Gist options
  • Save mdmoinulhossain/d1f0f3fea001ec6c75c4eca93400ba8a to your computer and use it in GitHub Desktop.
Save mdmoinulhossain/d1f0f3fea001ec6c75c4eca93400ba8a to your computer and use it in GitHub Desktop.
Html Components using JavaScript
class ComponentName extends HTMLElement {
connectedCallback() {
this.innerHTML = `Here your HTML`;
}
}
customElements.define("comp-imple", ComponentName);
// <comp-imple></comp-imple> - into where it shown with script tag link-up. compomrmt name should have small letters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment