I'm working on a webpage and I'm using frames. I'd like to make it using tables, but I don't know how to implement each part of the frame into a table.
So, my question is, is it well designed? If not, how can I improve it?
Here is the code of my page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>
Prueba
</title>
</head>
<frameset rows="56px, *, 50px" border="0" framespacing="0" frameborder="NO">
<frame class="header" src="header.html">
<frameset cols="450px, *" border="0" framespacing="0" frameborder="NO">
<frameset rows="*,150px" border="0" framespacing="0" frameborder="NO">
<frame class="frame1" scrolling="auto" src="search_results.html">
<frame class="frame2" scrolling="no" src="info.html">
</frameset>
<frame class="frame3" scrolling="no" src="map.html">
</frameset>
<frame class="footer" scrolling="no" src="footer.html">
</frameset>
</html>
You can start improving it by removing frames.