<?xml version="1.0" encoding="iso-8859-1"?>
<!--<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -->
<svg width="12cm" height="6cm" 
     viewBox="0 0 1200 600"
     version="1.1"
     xmlns="http://www.w3.org/2000/svg" 
     xmlns:xlink="http://www.w3.org/1999/xlink"
     xml:lang="fi">
     
  <title>Ohoi Maailma!</title>
  <desc>Koodiesimerkki joka sisältää miltei klassisen 
  tervehdystekstin "Ohoi Maailma" osana vektorigrafiikkaa.
  </desc>
  
  <defs>
    <clipPath id="myClip">
      <circle cx="300" cy="300" r="100" /> 
    </clipPath>
    <g id="myBolt">
      <circle cx="0" cy="0" r="11" fill="lightgray" 
              stroke="black" stroke-width="2"/>
      <path d="M 0 -5 L 0 5" stroke="black" stroke-width="3"/>
    </g>    
    <radialGradient id="myGrad" gradientUnits="userSpaceOnUse"
                    cx="850" cy="300" r="320" fx="850" fy="300">
      <stop offset="35%" stop-color="white" />
      <stop offset="80%" stop-color="gray" />
      <stop offset="100%" stop-color="white" />
    </radialGradient>    
  </defs> 
  
  <rect x="100" y="200" width="1000" height="200" fill="url(#myGrad)"
        stroke="gray" stroke-width="20"/>
  <rect x="90" y="190" width="1020" height="220" fill="none"
        stroke="black" stroke-width="5"/>
        
  <circle cx="300" cy="300" r="145" fill="lightgray" stroke="gray"
          stroke-width="15" /> 
  <image x="200" y="200" width="200" height="200"
         xlink:href="sea.jpg" clip-path="url(#myClip)"/>
  <circle cx="300" cy="300" r="100" fill="none" stroke="black"
          stroke-width="5" /> 
  <g transform="translate(300,180)">        
    <use xlink:href="#myBolt" />
  </g>
  <g transform="translate(300,420)">        
    <use xlink:href="#myBolt" />
  </g>
  <g transform="translate(180,300) rotate(90)">        
    <use xlink:href="#myBolt" />
  </g>
  <g transform="translate(420,300) rotate(90)">        
    <use xlink:href="#myBolt" />
  </g>
  
  <text x="490" y="320" font-size="80" font-family="sans-serif"
        font-weight="bold">
  Ohoi maailma!
  </text>  
  <path d="M 490 320 L 1050 320" stroke="black" stroke-width="3" />
  
</svg>

