CODE
<html>
<body>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
</body>
</html>
<body>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
</body>
</html>
Now we will use “document.write” command (it is a standard command for JavaScript) to complete our previous code. This “document.write” command is a standard JavaScript command that writ output to a page. If we put “document.write("This is a JavaScript tutorial.");” inside the <script> tag, we will get output “This is a JavaScript tutorial.”. So the complete code is-
CODE
<html>
<body>
<script type="text/javascript">
document.write("This is a JavaScript tutorial.");
</script>
</body>
</html>
<body>
<script type="text/javascript">
document.write("This is a JavaScript tutorial.");
</script>
</body>
</html>
In previous example we used JavaScript in the body section. We can also use JavaScript in the head section. The system is similar, just put the script in the head section.
CODE
<html>
<head>
<script type="text/javascript">
(Place for our JavaScript codes here)
</script>
</head>
</html>
<head>
<script type="text/javascript">
(Place for our JavaScript codes here)
</script>
</head>
</html>
We can also use JavaScript in both head and body section.
CODE
<html>
<head>
<script type="text/javascript">
(Place for our JavaScript codes here)
</script>
</head>
<body>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
</body>
</html>
<head>
<script type="text/javascript">
(Place for our JavaScript codes here)
</script>
</head>
<body>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
</body>
</html>
Remember that we can use unlimited number of scripts in your document. But every time we must use “<script>” tag before starting JavaScript and “</script>” tag in the end.
CODE
<html>
<head>
<script type="text/javascript">
(Place for our JavaScript codes here)
</script>
</head>
<body>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
</body>
</html>
<head>
<script type="text/javascript">
(Place for our JavaScript codes here)
</script>
</head>
<body>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
<script type="text/javascript">
(Place for our JavaScript codes)
</script>
</body>
</html>
I hope this little tutorial will help the beginner of JavaScript.

