Those technologies are:
HTML templates: Fragments of HTML markup using elements that won't be rendered until they're appended to the page with JavaScript. Custom elements: Widely supported JavaScript APIs that let you create new DOM elements. Once you create and register a custom element using these APIs, you can use it similarly to a React component. Shadow DOM: A smaller, encapsulated DOM that is isolated from the main DOM and rendered separately. Any styles and scripts you create for your custom components in the Shadow DOM will not affect other elements in the main DOM.
basically in this project Html and css and JavaScript is used here Web Component that allow you to create custom HTML elements , Lifecycle Callbacks connectedCallback to append component data to UI and use Shadow Dom with Custom Elements.SI No. | Technology Used |
---|---|
1. | HTML |
2. | CSS |
3. | JavaScript |
3. | Web Components |