<circle cx cy r />
circle
SVG
element is an SVG
basic shape,
used to draw circles based on a center point and a radius
cx
length
percentage
cy
length
percentage
r
length
percentage
// svg_example_two.svg <div class="flex_container"> <object data="../svg/svg_example_two.svg" type="image/svg+xml"> </object> </div>
<svg version= "1.1" width = "300" height = "150" xmlns = "http://www.w3.org/2000/svg"> <rect width = "100%" height = "100%" fill = "lightgoldenrodyellow" /> <circle cx = "150" cy = "75" r = "40" stroke = "red" stroke-width = "5" fill = "lightgreen" /> </svg>