HTML5 a circle using SVG examples




HTML5 a circle using SVG examples

<!DOCTYPE html>
<html>
   <head>
      <title>Create a Circle with HTML5 SVG examples</title>
      <style type="text/css">
         svg  {
            border: 1px solid blue;
         }
      </style>
   </head>
   <body>
      <svg width="300" height="200">
         <circle cx="150" cy="100" r="70"
         style="fill:lime; stroke:blue; stroke-width:3;" />
      </svg>
   </body>
</html>

Output