1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Frame Tests</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<frameset cols="50%,50%">
<frame src="frames-one.html">
<frame src="frames-two.html">
</frameset>
<noframes>
<p>I don't know how you got a copy of Firefox without frames, but these tests require frames.</p>
</noframes>
</html>
|