HTML <template>
query_builder | Christopher PisaniThe HTML element <template> holds HTML code not visible on an HTML page, however the code is parsed and will be ready for use at a later stage with JAVASCRIPT.
A simple template example
<template>
<h2>Logo</h2>
<img src="/media/jazzo_black.png">
</template>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.