<html xmlns="http://www.w3.org/1999/xhtml">
 <title>SVG directly inside XHTML</title>
 <style> html { margin:1em } </style>
 <p>There should be a green circle below:</p>
 <svg xmlns="http://www.w3.org/2000/svg">
  <circle r="50" cx="50" cy="50" fill="green"/>
 </svg>
</html>