index.html 145 B

123456789101112
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h2>Using window.alert to give an alert</h2>
  5. <script>
  6. window.alert("This is a alert");
  7. </script>
  8. </body>
  9. </html>