Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="/js/index.js"></script>
  4. </head>
  5. <body>
  6.  
  7. <button onclick="sayHello()">Say Hello</button>
  8.  
  9. </body>
  10. </html>
  11.  
  12. window.addEventListener("load", async () => {
  13.  
  14. function sayHello(){
  15. alert("Hello!");
  16. }
  17.  
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement