SVG arena

Diplomado UC

by palamago

HTML

<h1>TĂ­tulo principal de mi documento</h1>
<p>Miren, esto es SVG.</p>

<svg height="400" width="400">
      <circle cx="50" cy="50" r="25" />
      <circle cx="100" cy="100" r="30" stroke="black" stroke-width="3" fill="green" />
      <rect x="200" y="200" width="150" height="150" stroke-width="2" stroke="red" fill="blue"/>
      <line x1="0" y1="0" x2="200" y2="200" stroke-width="1" stroke="purple" />
      <text x="300" y="100" font-size="60" text-anchor="middle" fill="white">SVG</text>

</svg>