This code works in IE 8 and Firefox 3 but not Chrome. How would I make it compatible?
Code:
<html>
    <head>
        <title>Open Text facilities viewer</title>
    </head>
    <frameset rows="100, *">
        <frame src="banner.htm" scrolling="no" noresize>
        <frameset cols="200, *" resize="yes">
            <frame name="nav" scrolling="auto" src="nav.htm">
            <frame name="content" scrolling="auto" src="main.htm">
        </frameset>
    </frameset>
    <body>
        <noframes>This section of the site uses frames. Please have said feature enabled or get a browser that supports frames, such as Internet Explorer 8, Firefox 3, or Safari 4.</noframes>
    </body>
</html>