
<html>
<head>
<title>sunflower lady
</title>
</head>
<body bgColor = "white">
<img src = "sunflowerlady.jpg" name = "sunflowerphoto">
</body>
</html>
(Mac:
control click and save this photo to your usb drive.Describe what you think will happen when this code loads in a browser.
Then type this code into an html file using a text editor (dream weaver is available on the Macs.) Save your file and open it in a browser to test your hypotheses.
<html> <head> <title>sunflower image swap </title> </head> <body bgcolor="white"> <a href="#" onmouseover="document.sunflowerphoto.src = 'sunflowers.jpg';" onmouseout="document.sunflowerphoto.src = 'sunflowerlady.jpg';"> <img src="sunflowerlady.jpg" width="300" height="200" name="sunflowerphoto" border="0"> </a> </body> </html>