blob: 85a607a90bd8ab4c78f5e45b43daa69ad262d9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<title>Frames Example</title>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="docbook.css">
</head>
<frameset COLS="20%,*">
<frame SRC="toc.htm" NAME="TOC">
<frameset ROWS="*,25">
<frame SRC="book1.htm" NAME="BODY">
<frame SRC="navbar.htm" NAME="NAV" frameborder="no"
marginheight=0 marginwidth=10 scrolling="no" >
</frameset>
<noframes>
<body>
Your browser does not support frames.
</body>
</noframes>
</frameset>
</html>
|