Difference between revisions of "CSC103 Javascript Skeleton Program"

From dftwiki3
Jump to: navigation, search
(New page: Back to weekly schedule <code><pre> <html> <head> <title>Skeleton</title> </head> <body> <h1>My first Javascript Program</h1> <script language="JavaScript" ty...)
 
 
Line 14: Line 14:
  
 
//Do not write below this line.
 
//Do not write below this line.
 +
 
//-->
 
//-->
 
</script>
 
</script>

Latest revision as of 06:46, 6 October 2008

Back to weekly schedule

<html>
<head>
<title>Skeleton</title>
</head>
<body>
<h1>My first Javascript Program</h1>
<script language="JavaScript" type="text/javascript"><!--

//Enter your code below this line:


//Do not write below this line.

//-->
</script>
</body>
</html>