DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Javascript Hello World
Put the code into hello.html and open in your browser.
<html>
<body>
<script language="javascript">
document.write("Hello World!");
</script>
</body>
</html>






