Advertisement
H4nk

3 Tombol

Mar 9th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function link1()
  6. {
  7. window.location.assign("http://www.blogspot.com")
  8. }
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <input type="button" value="Blog Spot" onclick="link1()">
  14.  
  15. </body>
  16. <script>
  17. function link2()
  18. {
  19. window.location.assign("http://h4nk.blogspot.com")
  20. }
  21. </script>
  22. </head>
  23. <body>
  24.  
  25. <input type="button" value="H4nk blog" onclick="link2()">
  26.  
  27. </body>
  28. <script>
  29. function link3()
  30. {
  31. window.location.assign("http://www.google.com")
  32. }
  33. </script>
  34. </head>
  35. <body>
  36.  
  37. <input type="button" value="google" onclick="link3()">
  38.  
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement