D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jupegarnica
Full window
Github gist
A Pen by jupegarnica.
<div id="clock-container"> <svg id="clock" viewBox="0 0 100 100"> <circle id="face" cx="50" cy="50" r="45"/> <g id="hands"> <rect id="hour" x="47.5" y="12.5" width="5" height="40" rx="2.5" ry="2.55" /> <rect id="min" x="48.5" y="12.5" width="3" height="40" rx="2" ry="2"/> <line id="sec" x1="50" y1="50" x2="50" y2="16" /> </g> </svg> </div>