Create a SVG rectangle

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

      <svg xmlns="http://www.w3.org/2000/svg" width="400px" height="400px">
         <rect x="24" y="24" width="320" height="200" fill="black" stroke="yellow" stroke-width="5" />
      </svg>

  </body>
</html>  

Responses

0 Replies