Looks like my guess is correct, they are using framesets... I've given you an example of the code above, and the tutorial link given by kkrizka should work... and here's the html code of the example you've given, you should recognise some framsets here...
CODE
<html>
<head>
<title>Salient LED signs, moving message signs, electronic signs, experts in LED signs</title>
</head>
<frameset rows="80,*" border=0 frameborder="0">
<frame name="banner" scrolling="no" noresize target="contents" src="products-heading.htm">
<frameset cols="150,*">
<frame name="contents" scrolling="no" noresize target="column" src="products-column.htm">
<frame name="main" noresize target="main" src="products-main.htm">
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
Frames are actually a great tool but a different screen resolution of the client or some browser may screw up your entire page view, so be very careful when you use framesets for your sites...
Reply