## Programatic and Declaritive usage: You can use `` programatically: ```js const webGreeting = document.createElement("web-greeting") webGreeting.name = "Justin" document.body.append(webGreeting) webGreeting.innerHTML //-> "

Hello, Justin

" ``` Or you can use it declaratively: ```js document.body.innerHTML = "" document.body.firstChild.name = "I do declare" document.body.firstChild.innerHTML //-> "

Hello, I do declare

" ```