Widget:CharlesSVG: Difference between revisions

no edit summary
No edit summary
No edit summary
 
Line 9: Line 9:
   <body>
   <body>
    
    
   <svg viewBox="0 0 500 500">
   <svg version="1.1"
  <rect x="10" y="10" width="20" height="40" fill="red" ></rect>
    width="300" height="200"
 
    xmlns="http://www.w3.org/2000/svg">
  <circle cx="200" cy="100" r="40" fill="orange" stroke="black" stroke-width="4"></circle> 
 
  <path d="M 100 100 l 110 120"></path>
  <rect width="100%" height="100%" fill="red" />
 
 
  <circle cx="150" cy="100" r="80" fill="green" />
 
  <text x="150" y="125" font-size="60" text-anchor="middle" fill="white">SVG</text>
 
</svg>
</svg>
----
----