So how is it used?




Javascript is embedded into HTML


I will have to assume at this point that everyone has some knowledge of HTML

<html>

<head>
Meta tags go here
Document title goes here
</head>

<body>
HTML goes here

<script type="text/javascript">
Javascript goes here
</script>

HTML goes here
<body>

</html>


The Javascript can also go in the head, but for normal use you will want to intergrate it into the page text within the document body (Personal preference)





Page4