HTML5 SVG into HTML documents examples




HTML5 SVG into HTML documents examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 SVG into HTML documents examples</title>
   </head>
   <body>
      <svg width="300" height="200">
         <text x="10" y="20" style="font-size:14px;">
            Your browser support SVG.
         </text>
         Sorry, your browser does not support SVG.
     </svg>
   </body>
</html>

Output