javascript with html

JavaScript with HTML Part – 2 0

JavaScript with HTML Part – 2

Program 1 <html> <head> <title>This is My Java Script Event Page</title> <script type=”text/javascript”> function message() // Defination { alert(“This is my click button”) let i for(i=1;i<=10;i++) { document.writeln(i + “<br>”) } } function display()...

JavaScript with HTML Part – 1 0

JavaScript with HTML Part – 1

Program 1 <html> <head> <title>This is My First Java Script Page</title> <script type=”text/javascript”> document.writeln(“<font color=red size=5>This is my java script line</font>”) document.writeln(“<br><font color=red size=5>This is my java script line</font>”) document.writeln(“<br><font color=red size=5>This is my...