I can make a set of circles that are all the appropriate color using multiple div elements and the css file for the page. My current task however is to only use a single div element to dynamically create a target in javascript and not css that has multiple colored rings, modeled after this image. I started something like this:
var containerDiv = document.getElementById("container");
containerDiv.style.width = "200px";
containerDiv.style.height = "200px";
But this would only set the biggest circle that I need if anything. I am not sure how to create the smaller, different colored circles inside the target dynamically.