Challenge: Creating DOM Elements
In this lesson, we will add elements to the HTML document using JavaScript and the DOM concept only. Let's begin!
We'll cover the following...
Challenge
Create an unordered list with at least three list items using only Javascript. The unordered list should show up in the HTML document and output correctly. A possible output is shown below:
Implement your solution below
Solution review
...