<?xml version="1.0" standalone="no" ?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
  "http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd">

<svg>

  <!--  Two diagonal line segments, one darker than the other -->

  <line 
    x1 = "50" y1 = "50" x2="300" y2="300" 
    style = "
      stroke:#FF0000; 
      stroke-width:4;
      stroke-opacity:0.3;" 
  />

  <line 
    x1 = "50" y1 = "100" x2="300" y2="350" 
    style = "
      stroke:#00FF00; 
      stroke-width:4;
      stroke-opacity:1.0;" 
  />

</svg>
