Basic text usage

by Sourabh Tewari

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text -->

<svg xmlns="http://www.w3.org/2000/svg"
     width="500" height="40" viewBox="0 0 500 40">

  <text x="0" y="30" dx="100" font-family="Verdana" font-size="35">
    Hello, out there
  </text>
</svg>