| YOUR GRADED ASSIGNMENT Modify your project by creating a new frames.html with your current graphical menu that targets your 5 pages into the frame. SAVE & SHOW |
this is the code: <html><head><title>...</title></head><body> <a href="home.html" target="coolframe"> <img src="home.gif"> </a> <a href="contact.html" target="coolframe"> <img src="contact.gif"> </a> <a href="mission.html" target="coolframe"> <img src="mission.gif"> </a> <a href="staff.html" target="coolframe"> <img src="staff.gif"> </a> <br> <iframe src="index.html" name="coolframe" width="600" height="400"></iframe> </body></html> |
| <html><head><title>...</title></head><body> <table> <tr> <td><iframe src="menu.html" name="left" width="200" height="400"></iframe></td> <td><iframe src="project1.html" name="right" width="500" height="400"></iframe></td> </tr> </table> </body></html> |