in your index.htm / index.html file ====
<html>
<head>
<title>whatever title of your site here</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset cols="125,*" frameborder="NO" border="0" framespacing="0">
<frame src="index2.htm" name="leftFrame" scrolling="NO" noresize>
<frame src="index3.htm" name="mainFrame">
</frameset>
<noframes><body>
</body></noframes>
</html>
[ at the title area, this is what will show up throughtout all of the web pages, even if you name all the other pages seperate titles. this index/main on site visit html file is like the master. of course i would suggest you place all your other special coding... like disabling right clicks... whatever.
[ within the frame src= index2.htm or whatever you name it is practically the main site you add the rest of your coding. if normally your site had frames, you would frame up THAT coding in this file.
[ the index3 whatever you name it is blank= why you ask? it just is! when using frames, a lot of html software doesnt like to place a single frame box on a page. a lot of them require a minimum of 2. what happens in this coding is::::: the 1st frame src is at 100% of the displayable web page to the user. which over writes / takes over the 2nd frame that a lot of things require and is to the front. even though the dead 2nd page file is there, leave it, dont touch.
If you had a weird taste like me and have your desktop background set to a web page, then you can get crazy and 50 / 50 the 1st and 2nd frame with no scroll bars. write up some wierd coding and go nuts with your own start menu , prog launching options features... i think you have an idea of what im saying here.
###############################
the MAIN page/ in relation to index2.htm in the frame src . coding is
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
your web site coding hered
sdjklhsdlkjhdg
sdfkjghsdkjgfhsfg
sdjghsdfkjghsg
skjdgskjdfgklsjfghs
skdjgfhskljfghlskjfgs
</body>
</html>
[ and of course if you wanted your site with frames and other crap you code it in here. if you reframe, of course you know you'll have more html files and it can get confusing if you dont label them the right way.
[ i'd suggest to leave the remainder of the titles in all your other web pages blank.
###############################
and the 3rd file in relation to index3.htm / or whatever you name it is :
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
</body>
</html>
[ like i said leave it blank unless you want to get courgaeous and inventful.
##############################