Create a SVG ellipse

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

      <svg xmlns="http://www.w3.org/2000/svg" width="500px" height="300px">
         <ellipse  cx="190" cy="90" rx="155" ry="34" fill="green" />
      </svg>

  </body>
</html>  

Responses

0 Replies