Example
<script src="processing.js"></script>should become
<script src="processingjs.org/js/processing.min.js"></script>
Updated Solution
<script src="processing.js"></script>should become
<script src="processingjs.org/js/processing.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'/>
<Group description="Blog Title" selector=".header h1">
<Variable name="header.font" description="Font" type="font"
default="normal normal 60px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 80px Crushed"/>
default="normal normal 60px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 80px Raleway, FreeSans, sans-serif"/>
Hopes this helps. Comment if you have any questions.... or comments
<h1><span id="countdown"></span></h1>Days till I report to the MTC <script> var target_date = new Date("Aug 15, 2015").getTime(); // variables for time units var days, hours, minutes, seconds; // get tag element var countdown = document.getElementById("countdown"); // update the tag with id "countdown" every 1 second setInterval(function () { // find the amount of "seconds" between now and target var current_date = new Date().getTime(); var seconds_left = (target_date - current_date) / 1000; // do some time calculations days = parseInt(seconds_left / 86400); // format countdown string + set tag value countdown.innerHTML = days ; }, 1000); </script>It should look like this