Here is the code that I used for a page:
<!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" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>This page illustrates frame sets</title>
</head>
<body>
<frameset rows="30%,*,20%">
<frame name="one" src="styledform.html" />
<frame name="two" src="index.html" />
<frame name="three" src="form.html" />
</frameset>
</body>
</html>
The html files styledform.html
, index.html
and form.html
are all present in the same folder as the file whose source code I have displayed above.
When I try to open the above link in Google Chrome browser, I see a blank page. What is the error?