References

Collection of references for web development.

HTML template tag

Description

The HTML <template> element represents a container that is hidden from the client, often used with JavaScript.

Example

<template>
	<p>This content is not rendered by your browser.</p>
</template>