base-project
Base to build on.
by robhortn
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<h1>Big Fancy Website Goes Here</h1>
<p>
Amazing, beautiful content goes here
</p>
<div id="debug-output">
<p>.:: Debug output ::.</p>
</div>
CSS
#debug-output {
margin-top: 20px;
background-color: blue;
color: yellow;
padding: 8px;
font-family: 'Segoe UI', Consoloas, Courier;
}
JavaScript
function logit(strMsg) {
document.getElementById('debug-output').innerHTML += strMsg + '<br/>'
}
logit('Debug output goes here instead of using something naughty writing to the document.');