Rende text on web pages using SVG examples




Rende text on web pages using SVG examples

<!DOCTYPE html>
<html>
   <head>
      <title>Rende text on web pages using SVG examples</title>
      <style type="text/css">
         svg  {
            border: 1px solid black;
         }
      </style>
   </head>
   <body>
      <svg width="400" height="200">
         <text x="20" y="30" style="fill:purple; font-size:22px;">
            Welcome to Our Website Tutorialsroot!
         </text>
         <text x="20" y="30" dx="0" dy="20" style="fill:navy; font-size:14px;">
            Here you will find of all useful information.
         </text>
      </svg>
   </body>
</html>

Output