<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:svg="http://www.w3.org/2000/svg" >
  <head>
    <title>Basic SVG</title>
  </head>

  <body>
    <h1>Basic SVG</h1>
  <ul>
    <li>3 types of graphic objects:
      <ul>
        <li>Vector grahics shapes (e.g. paths consisting of straight lines and curves)</li>
        <li>Images</li>
        <li>Text</li>
      </ul>
    </li>
    <li>Shapes and Text can be filled and stroked</li>
    <li>Units can be resolution dependent or independent</li>
  </ul>
  <pre style="background-color:#DDDDFF;">
  &lt;?xml version="1.0"?&gt;
  &lt;svg xmlns="http://www.w3.org/2000/svg"&gt;
    &lt;g fill-opacity="0.7" stroke="black" stroke-width="0.1cm" &gt;
      &lt;circle cx="6cm" cy="2cm" r="100" fill="red" transform="translate(0,50)" /&gt;
      &lt;circle cx="6cm" cy="2cm" r="100" fill="blue" transform="translate(70,150)" /&gt;
      &lt;circle cx="6cm" cy="2cm" r="100" fill="green" transform="translate(-70,150)"/&gt;
    &lt;/g&gt;
  &lt;/svg&gt;
  </pre>

  
  <svg:svg width="12cm" height="12cm">
    <svg:g fill-opacity="0.7" stroke="black" stroke-width="0.1cm">
      <svg:circle cx="6cm" cy="2cm" r="100" fill="red" transform="translate(0,50)" />
      <svg:circle cx="6cm" cy="2cm" r="100" fill="blue" transform="translate(70,150)" />
      <svg:circle cx="6cm" cy="2cm" r="100" fill="green" transform="translate(-70,150)"/>
      <svg:rect x="0" y="0" width="99%" height="99%" style="fill:none;stroke:black; stroke-width:1;"/>
    </svg:g>
  </svg:svg> 
</body>
</html>