Frameset
with noresize="noresize"
This example demonstrates the noresize attribute. The frames are not resizable.
Move the mouse over the borders between the frames and notice that you
can not move the borders.
Navigation frame
This example demonstrates how to make a navigation frame. The navigation
frame contains a list of links with the second frame as the target. The
file called "tryhtml_contents.htm" contains three links. The source code
of the links:
< a href ="tryhtml_frame_a.htm" target ="showframe">Frame a</a><br>
< a href ="tryhtml_frame_b.htm" target ="showframe">Frame b</a><br>
< a href ="tryhtml_frame_c.htm" target ="showframe">Frame c</a>
The second frame will show the linked document.
Inline frame
This example demonstrates how to create an inline frame (a frame inside
an HTML page).
Jump to a specified section within a frame
This example demonstrates two frames. One of the frames has a source
to a specified section in a file. The specified section is made with <a name="C10"> in
the "link.htm" file.
Jump to a specified section with frame navigation
This example demonstrates two frames. The navigation frame (content.htm)
to the left contains a list of links with the second frame (link.htm)
as a target. The second frame shows the linked document. One of the links
in the navigation frame is linked to a specified section in the target
file. The HTML code in the file "content.htm" looks like this: <a href
="link.htm" target ="showframe">Link without Anchor</a><br><a
href ="link.htm#C10" target ="showframe">Link with Anchor</a>.