Advertisement
virtualideaz

AlertBox.html

Apr 4th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.     <title>Alert Box</title>
  4. </head>
  5. <body>
  6.     <h1>Built-in JavaScript Functions</h1>
  7.     <p>these are some of the built-in functions in JavaScript</p>
  8.    
  9.     <p>Click the button to display an alert box</p>
  10.    
  11.     <button type="button" onclick="myFunction()">Click Me</button>
  12.    
  13.     <script>
  14.         function myFunction() {
  15.             alert("I am an alert box");
  16.         }
  17.     </script>
  18.  
  19.    
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement