reenadak

2018-09-02_javascript_function_example

Sep 2nd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.35 KB | None | 0 0
  1.  
  2. <html>
  3.     <head>
  4.         <title>First Javascript</title>
  5.  
  6. <script language="Javascript" type="text/Javascript">
  7.   function hello_world()
  8. {
  9.     document.write("Hello World from Javascript !!!");
  10. }
  11. </script>  
  12.     </head>
  13.     <body>    
  14.  
  15.       <a href="javascript:hello_world();">Hello</a>
  16.  
  17.  
  18. <p>Javascript Example<p>
  19.  
  20.     </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment