Your challenge is to build out this countdown timer and get it looking as close to the design as possible. You can use any tools you like to help you complete the challenge. So if you've got something ...
<script> function startTimer(duration, display) { var timer = duration, hours, minutes, seconds; setInterval(function () { hours = parseInt(timer / 3600, 10); minutes ...