Exemplo SVG

by Wurthmann

HTML

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
    "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
     width="200px" height="50px"
     viewBox="0 0 200 50"
     zoomAndPan="disable" >
      
     <text x="60" y="25">Hello World!</text> <!--tag texto-->
     <rect x="10" y="5" width="20" height="20" fill="blue" /> <!--tag rect, criar retangulos, quadrados-->
     <rect x="20" y="10" width="160" height="20" fill="green" opacity="0.5" /> 
     <rect x="170" y="25" width="20" height="20" fill="blue" />
 
 
</svg>