Source Code:
(back to article)
Submit
Result:
Report an issue
<body> <my-custom-element></my-custom-element> <script> class MyCustomElement extends HTMLElement { constructor() { super(); this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `<p>Hello, World!</p>`; } } customElements.define('my-custom-element', MyCustomElement); </script> </body>