Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function groot(x)
  5. {
  6. x.style.height="256";
  7. x.style.width="256";
  8. }
  9.  
  10. function normaal(x)
  11. {
  12. x.style.height="128";
  13. x.style.width="128";
  14. }
  15. </script>
  16. </head>
  17. <body>
  18. <img onmouseover="groot(this)" onmouseout="normaal(this)" border="1px solid white"
  19. src="./afbeeldingen/kleding mannen/vans.jpg" alt="Vans Shirt" width="128" height="128" />
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment