Javascript TestGround As Minimal as it can Get!!!
===HTML|program.html===
<html>
<body>
<pre>
<script src="program.js">
</script>
</pre>
</body>
</html>
===Javascript|program.js===
document.writeln('Hello World');
===CSS| style.css ===
body {
color : blue;
}