Friday 19 February 2021

Javascript Programs

JAVASCRIPT


Simple Javascript Example-1

<!DOCTYPE html>
<html> 
<head>
<title>Java Script Example</title>
</head>
<body>
<pre>
   <script>
document.writeln("Hello World!");
document.writeln("Have a nice day!");
</script> 
</pre>
</body> 
</html>