What are two ways to target elements on the DOM?
QuerySelector
GetElementByID
What is another way to add a text node to an element other than using textContent.
innertext (avoids whitespace)
How do you create a HTML element using vanilla Javascript?
createElement method of document object.
document.createElement()