stuart-d2
2/12/2016 - 10:15 PM

Javascript TestGround As Minimal as it can Get!!!

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;  
}