SVG is a language that uses XML to describe two-dimensional graphics and drawing programs.

SVG <circle> syntax

<circle> tag can be used to create a circle

SVG <circle> example

<!DOCTYPE html>
<html>
<body>

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</svg>
​
</body>
</html>

Run Instance»

Click "Run Instance" " button to view online examples