<html>
<frameset rows="20%,80%">
<frameset cols="100%">
<frame src="Page1.html">
</frameset>
<frameset cols="20%,*">
<frame src="open.html">
<frame src=" " name="op">
</frameset>
</html>
Page 1.html
<html>
<body>
<h1 align=center>Frame Set</h1>
</body>
</html>
open.html
| <html> | |
| <head> | |
| <title> Open Page </title> | |
| </head> | |
| <body> | |
| <h3> Click to Open </h3> | |
| <br> | |
| <a href="Red.html" target="op"> Open Red </a> | |
| <br> | |
| <a href="Green.html" target="op"> Open Green</a> | |
| <br> | |
| <a href="Blue.html" target="op"> Open Blue </a> | |
| </body> | |
| </html> |
Red.html
<html>
<body bgcolor=RED>
</body>
</html>
Green.html
<html>
<body bgcolor=Green>
</body>
</html>
Blue.html
<html>
<body bgcolor=Blue>
</body>
</html>



target="op"
ReplyDeletewhat is exactly op in html? what does it do?