<?xml version="1.0" encoding="ISO-8859-1"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    	<style type="text/css">
            	body {font-size:120%;padding:20px;}
            	h1 {background-color:blue;color:white}
                div.object {border-style:solid;width:800px;height:600px;}
            </style>
</head>
<body>
<h1>SVG inside XHTML document</h1>
<div>
    <p>Here's an SVG drawing inside an object element</p>
    <div class="object">
    <object  style="width:800px;height:600px;" data="xforms_comm.svg"/>
    </div>
</div>
<div>
    <p>Here's an SVG drawing inside an object element with CSS size set in stylesheet</p>
    <div class="object">
    <object  data="xforms_comm.svg"/>
    </div>
</div>
    <div>
    <p>Here's an SVG drawing inside an image element</p>
    <div class="object">
    <image  src="xforms_comm.svg"/>
    </div>
</div>
</body>
</html>