In this chapter, we are going to examine HTML Template, another specification in the Web Components set. You are going to learn what an HTML Template is and how to use HTML templates in web components. We then will build a new web component for our collection.
What Is an HTML Template?
The HTML Template specification defines the <template> element, to create fragments of markup to be unused in our custom element until we activate them later on runtime. These fragments can be cloned and inserted in HTML by script.
The content will not render ...