An SVG clock
Sometimes we experiment and play with technology. The clock below is an SVG clock using SVG and Canvas technology to display local time. Doing it with these two technologies was easier than with JavaScript. The code doesn’t require calculating thousandths of a second like another clock I tried. The tutorial to make this clock is here: W3 Canvas Clock.
var canvas = document.getElementById(“canvas”); var ctx = canvas.getContext(“2d”); var radius = canvas.