To create a frame definition documnet, you use the <frameset> tag.
When used in an HTML document, the <frameset> tag replaces the
<body> tag as shown here
<html> <head> <title>HTML Tutorial</title> <head> <frameset> </frameset> </html>
|
Example <frameset cols="100,50%,*"> Output result |
|
Example <frameset cols="50%,50%,"> Output result |
Example <html> <head><title>HTML Tutorial</title> </head> <frameset rows="100,50%,*"> </frameset> </html> Output result |