-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathexample2.html
More file actions
21 lines (21 loc) · 753 Bytes
/
Copy pathexample2.html
File metadata and controls
21 lines (21 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<frameset cols="40%, 60%">
<frameset rows="25%, 75%">
<frame src="contents_of_frame1.html" />
<frame src="contents_of_frame2.html" />
</frameset>
<frame name="content" src="contents_of_frame3.html" />
<noframes>
<body>
<p>This frameset document contains:</p>
<ul>
<li><a href="contents_of_frame1.html">contents_of_frame1.html</a></li>
<li><a href="contents_of_frame2.html">contents_of_frame1.html</a></li>
<li><a href="contents_of_frame3.html">contents_of_frame1.html</a></li>
</ul>
</body>
</noframes>
</frameset>
</html>