console
let drawing = document.getElementById("drawing");
if(drawing.getContext) {
let context = drawing.getContext("2d");
context.beginPath();
context.arc(100,100,99,0,Math.PI*2,false);
context.moveTo(194,100);
context.arc(100,100,94,0,Math.PI*2,false);
context.moveTo(100,100);
context.lineTo(100,20);
context.moveTo(100,100);
context.lineTo(35,100);
context.font = "bold 14px Arial";
context.textAlign = "center";
context.baseline = "middle";
context.fillText("12",100,20);
context.stroke();
}
<canvas id="drawing" width="200" height="200">drawing</canvas>
#drawing {
background-color: greenyellow;
}