Recently, I was tasked with tearing down an existing HTML page and reconstructing a new one using only Javascript. After removing the original page, here is what I am left with:
<html>
<head></head>
<body>
<div id="masterDiv">
<div>
</div>
</div>
<script src = "Javascript.js"></script>
</body>
</html>
My goal now is to design a new website layout with a header, footer, left column, right column, and a central body area using only Javascript. (I have added the spare div to the master div)