<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  
<!-- Flag of Scotland
     This is the blue saltire (St. Andrew's Cross) that once served
     as the national flag of Scotland. 
     
     The original author was K. Bolino (kbolino@sdf.lonestar.org)
     This document was released into the public domain by the author. -->

<!-- The flag proportion is 3:5 -->

<!-- There seems to be some controversy as to an acceptable background color;
     the following are known to be used:
     rgbhex  red grn blu  name/source
     0072C6    0 114 196  PANTONE Matching System, Swatch 300 (PMS 300)
     085A9C    8  90 156  World Flag Database
     2DAEFF   45 174 255  Image on Wikipedia
-->

<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600"
  viewBox="0 0 50 30">

  <defs>
    <clipPath id="border">
      <rect width="50" height="30" />
    </clipPath>
  </defs>

  <g clip-path="url(#border)">
    <rect width="50" height="30" fill="#0072C6" />
    <path d="M 0,0 L 50,30 M 0,30 L 50,0" fill="none" stroke="white"
      stroke-width="6" />
  </g>

</svg>