JSFiddle - React, Tailwind, and code Playground

HTML

<div id="aboutme">
            <body>
                <p> This section will contain basic info about me</p>
            </body>
        </div>


    </div>

JavaScript

var listitems = document.getElementsByTagName('ul')[0];
                var newListItem = document.createElement('li');
                var newListItemText = document.createTextNode('Tutorials');
 console.log(listitems);
                newListItem.appendChild(newListItemText);
                listitems.appendChild(newListItem);