🔸<template>

╱🚧 under construction

webcomponent ⟩ <template>

🚧

HTML templates examples

💾 replit.com

  • can put <style> and <script> into <template> as well.

<!-- styles and scripts in template -->
<template>

  <style>
    p { font-weight: bold; }
  </style>
  
  <script>
    alert("Hello");
  </script>
  
</template>

Last updated

Was this helpful?