Create a SVG circle

A simple example of creating a SVG circle.
<!DOCTYPE HTML>
<html>
  <head>
    <style>
      body {
        margin: 0px;
        padding: 0px;
      }
    </style>
  </head>
  <body>

      <svg xmlns="http://www.w3.org/2000/svg" width="300px" height="300px">
         <circle cx="200" cy="100" r="70" fill="red" stroke="black" stroke-width="5" />
      </svg>

  </body>
</html>  

Responses

0 Replies