-
Which of the following element is for holding client-side content?
-
- <element>
- <content>
- <template>
- <slot>
- None of these
Correct Option: C
<template> element in HTML is a mechanism for holding client-side content that is not to be rendered when page is loaded but may subsequently be instantiated during runtime using JavaScript. The element includes global attributes. <slot> is a placeholder inside a web components. <element> is one of part of web components, used to custom DOM elements. The obsolete part of web components is <content>.