HTML5 a rectangle using SVG examples




HTML5 a rectangle using SVG examples

<!DOCTYPE html>
<html>
   <head>
      <title>Create a Rectangle with HTML5 SVG examples</title>
      <style type="text/css">
         svg {
            border: 2px solid red;
         }
      </style>
   </head>
   <body>
      <svg width="300" height="200">
         <rect x="50" y="50" width="200"
         height="100" style="fill:orange; stroke:black; stroke-width:3;" />
      </svg>
   </body>
</html> 

Output