<body>

<h1>Web Delivery: Embedded and Full-Screen CDF</h1>

<p>CDF files can be embedded as objects within web pages or viewed as full-screen documents within a browser. Embedding CDF objects can be as simple as pasting a snippet of code provided by Mathematica when saving the file or by manually entering an <embed>-tagged object in your HTML.</p>

<script type="text/javascript" src="https://www.wolfram.com/cdf-player/plugin/v2.1/cdfplugin.js"></script>
<script type="text/javascript">
    var cdf = new cdfplugin();
    cdf.embed('VoronoiDiagram.cdf', 588, 380);
</script>


<p>While the <embed> tag is no longer a W3C standard, it remains almost universally supported by all browsers. The example above can be expressed as simply as with the following single line of HTML code, indicating file name and image size:</p>

</body>