Paste the following code in place on the site where you want to see the clock . On uCoz it may be, for example , " upper " or " lower part of the site " :
Code
<span id="time">00:00:00</span>
<script type="text/javascript"> setInterval(function () { date = new Date(), h = date.getHours(), m = date.getMinutes(), s = date.getSeconds(), h = (h < 10) ? '0' + h : h, m = (m < 10) ? '0' + m : m, s = (s < 10) ? '0' + s : s, document.getElementById('time').innerHTML = h + ':' + m + ':' + s; }, 1000); </script>
The script will show immediately in the place where you install it , a line of text to the clock.Seconds , minutes and hours , by the way , always double-digit , so a change of values takes place smoothly.