{article Content Table}{title} {text} {/article}

document.write outputs text to the browser.

<br/>separate lines in the browser


{source}
<!-- You can place html anywhere within the source tags -->
<pre class="brush: php; highlight: [13,14,15,16,17]; html-script: true">

&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;
    &quot;http://www.w3.org/TR/html4/strict.dtd&quot; &gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;title&lt;/title&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
    &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
    &lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;
    &lt;meta name=&quot;robots&quot; content=&quot;index,follow&quot; /&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;styles.css&quot; /&gt;
&lt;/head&gt;
    &lt;body&gt;
        &lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
        document.write(&quot;&lt;strong&gt;Hello World&lt;/strong&gt;&quot;);
        <br/>
        document.write(&quot;&lt;br/&gt;first Javascript program!&quot;);
        &lt;/script&gt;
    &lt;/body&gt;
&lt;/html&gt;


</pre>

<script language="javascript" type="text/javascript">
    // You can place JavaScript like this

</script>
<?php
    // You can place PHP like this

?>
{/source}