text.svg 572 B

12345678910111213141516
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <svg viewBox="0 0 1000 300"
  5. xmlns="http://www.w3.org/2000/svg" version="1.1">
  6. <desc>Example text01 - 'Hello, out there' in blue</desc>
  7. <text x="250" y="150"
  8. font-family="Verdana" font-size="55" stroke="red" fill="blue" >
  9. Hello, out there
  10. </text>
  11. <!-- Show outline of canvas using 'rect' element -->
  12. <rect x="1" y="1" width="998" height="298"
  13. fill="none" stroke="blue" stroke-width="2" />
  14. </svg>